Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1109 jp_milcent 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 5.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 1999-2006 Tela Botanica (accueil@tela-botanica.org)                                    |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of papyrus_bp.                                                                         |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: gallerie.php,v 1.1 2006-12-07 15:39:47 jp_milcent Exp $
25
/**
26
* papyrus_bp - gallerie.php
27
*
28
* Le code provient de "Simple Image Gallery" (in content items) Plugin for Joomla 1.0.x - Version 1.0
29
* License: http://www.gnu.org/copyleft/gpl.html
30
* Authors: Fotis Evangelou - George Chouliaras
31
* Project page at http://www.joomlaworks.gr - Demos at http://demo.joomlaworks.gr
32
* ***Last update: December 5th, 2006***
33
*
34
*@package papyrus_bp
35
//Auteur original :
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
//Autres auteurs :
38
*@author        Aucun
39
*@copyright     Tela-Botanica 1999-2006
40
*@version       $Revision: 1.1 $ $Date: 2006-12-07 15:39:47 $
41
// +------------------------------------------------------------------------------------------------------+
42
*/
43
 
44
// +------------------------------------------------------------------------------------------------------+
45
// |                                            ENTÊTE du PROGRAMME                                       |
46
// +------------------------------------------------------------------------------------------------------+
47
 
48
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = 'afficherGallerie';
49
$GLOBALS['_GEN_commun']['info_applette_balise'] = '\{\{[Gg]allerie(?: (?:(dossier="[^"]+")|(largeur="[^"]+")|(hauteur="[^"]+")|(qualite="[^"]+")))+\}\}';
50
 
51
/** Inclusion du fichier de configuration de cette application.*/
52
require_once GEN_CHEMIN_APPLETTE.'gallerie'.GEN_SEP.'configuration'.GEN_SEP.'gall_config.inc.php';
53
 
54
// +------------------------------------------------------------------------------------------------------+
55
// |                                            CORPS du PROGRAMME                                        |
56
// +------------------------------------------------------------------------------------------------------+
57
/** Fonction afficherCategorie() - Retourne la liste des pages d'une catégorie.
58
*
59
* Cette fonction retourne la liste des pages appartenant à une catégorie donnée.
60
*
61
* @param  array contient les arguments de la fonction.
62
* @param  array  tableau global de Papyrus.
63
* @return string HTML la liste des listes de menus.
64
*/
65
function afficherGallerie($tab_applette_arguments, $_GEN_commun)
66
{
67
	// Initialisation des variables
68
    $sortie = '';
69
 
70
	$tab_arguments = $tab_applette_arguments;
71
	unset($tab_arguments[0]);
72
    foreach($tab_arguments as $argument) {
73
	    $tab_parametres = explode('=', trim($argument));
74
	    $options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
75
    }
76
 
77
    if (!isset($options['dossier'])) {
78
        return '<p class="pap_erreur">'."Aucun dossier d'images passé en paramêtre!".'</p>';
79
    }
80
    if (!isset($options['largeur'])) {
81
        $options['largeur'] = 160;
82
    }
83
    if (!isset($options['hauteur'])) {
84
        $options['hauteur'] = 160;
85
    }
86
    if (!isset($options['qualite'])) {
87
        $options['qualite'] = 70;
88
    }
89
 
90
	$noimage = 0;
91
	// Read directory
92
    if ($dh = opendir(PAP_CHEMIN_RACINE.$options['dossier'])) {
93
      while (($f = readdir($dh)) !== false) {
94
         if((substr(strtolower($f),-3) == 'jpg') || (substr(strtolower($f),-3) == 'gif') || (substr(strtolower($f),-3) == 'png')) {
95
              $noimage++;
96
	          $images[] = array('filename' => $f);
97
              array_multisort($images, SORT_ASC, SORT_REGULAR);
98
         }
99
      }
100
      closedir($dh);
101
    }
102
 
103
   if($noimage) {
104
   		$GLOBALS['_GALLERIE_']['css']['chemin'] = GALL_CHEMIN_STYLES;
105
   		$GLOBALS['_GALLERIE_']['css']['largeur'] = $options['largeur']+10;
106
   		$GLOBALS['_GALLERIE_']['script']['chemin'] = GALL_CHEMIN_SCRIPTS;
107
   		$GLOBALS['_GALLERIE_']['images'] = array();
108
   		foreach($images as $image) {
109
			if ($image['filename'] != '') {
110
				$aso_img['fichier_nom'] = $image['filename'];
111
				$aso_img['url_img'] = $options['dossier'].'/'.$image['filename'];
112
				$aso_img['url_img_mini'] = preg_replace('/papyrus\.php$/', '', PAP_URL).GALL_CHEMIN_SCRIPTS.'showthumb.php?img='.urlencode(PAP_CHEMIN_RACINE.$options['dossier'].'/'.$image['filename']).'&amp;width='.$options['largeur'].'&amp;height='.$options['hauteur'].'&amp;quality='.$options['qualite'];
113
				$GLOBALS['_GALLERIE_']['images'][] = $aso_img;
114
			}
115
     	}
116
	}
117
 	// Extrait les variables et les ajoutes à l'espace de noms local
118
	extract($GLOBALS['_GALLERIE_']);
119
	// Démarre le buffer
120
	ob_start();
121
	// Inclusion du fichier
122
	include(GALL_CHEMIN_SQUELETTE.GALL_SQUELETTE_LISTE);
123
	// Récupérer le  contenu du buffer
124
	$sortie = ob_get_contents();
125
	// Arrête et détruit le buffer
126
	ob_end_clean();
127
 
128
	return $sortie;
129
}
130
 
131
/* +--Fin du code ----------------------------------------------------------------------------------------+
132
*
133
* $Log: not supported by cvs2svn $
134
*
135
* +-- Fin du code ----------------------------------------------------------------------------------------+
136
*/
137
?>