Subversion Repositories Applications.papyrus

Rev

Rev 1161 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1157 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: plan.php,v 1.1 2006-12-13 09:42:39 jp_milcent Exp $
25
/**
26
* papyrus_bp - plan.php
27
*
28
* Description :
29
*
30
*@package papyrus_bp
31
//Auteur original :
32
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
33
//Autres auteurs :
34
*@author        Aucun
35
*@copyright     Tela-Botanica 1999-2006
36
*@version       $Revision: 1.1 $ $Date: 2006-12-13 09:42:39 $
37
// +------------------------------------------------------------------------------------------------------+
38
*/
39
 
40
// +------------------------------------------------------------------------------------------------------+
41
// |                                            ENTÊTE du PROGRAMME                                       |
42
// +------------------------------------------------------------------------------------------------------+
43
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = 'afficherPlan';
44
$GLOBALS['_GEN_commun']['info_applette_balise'] = 	'\{\{[Pp]lan'.
45
													'(?:\s*'.
46
														'(?:'.
47
															'(site="[^"]+")|'.
48
															'(permalien="(?i:oui|non)")|'.
49
														')'.
50
													')+'.
51
													'\s*\}\}';
52
 
53
// --------------------------------------------------------------------------------------------------------
54
/** Inclusion du fichier de configuration de cette application.*/
55
require_once GEN_CHEMIN_APPLETTE.'plan'.GEN_SEP.'configuration'.GEN_SEP.'plan_configuration.inc.php';
56
 
57
// Inclusion des fichiers de traduction de l'applette PLAN de Papyrus
58
if (file_exists(PLAN_CHEMIN_LANGUE.'plan_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php')) {
59
    /** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
60
    require_once PLAN_CHEMIN_LANGUE.'plan_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php';
61
} else {
62
    /** Inclusion du fichier de traduction par défaut.*/
63
    require_once PLAN_CHEMIN_LANGUE.'plan_langue_'.PLAN_I18N_DEFAUT.'.inc.php';
64
}
65
 
66
// +------------------------------------------------------------------------------------------------------+
67
// |                                            CORPS du PROGRAMME                                        |
68
// +------------------------------------------------------------------------------------------------------+
69
/** Fonction afficherPlan() - Retourne la liste des pages du plan d'un site.
70
*
71
* Cette fonction retourne la liste des pages du plan d'un site.
72
*
73
* @param  array contient les arguments de la fonction.
74
* @param  array  tableau global de Papyrus.
75
* @return string HTML la liste de menus.
76
*/
77
function afficherPlan($tab_applette_arguments, $_GEN_commun)
78
{
79
	// Initialisation des variables
80
    $sortie = '';
81
	$GLOBALS['_PLAN_']['erreurs'] = array();
82
	$GLOBALS['_PLAN_']['informations'] = array();
83
	$GLOBALS['_PLAN_']['sites'] = array();
84
 
85
	//+----------------------------------------------------------------------------------------------------------------+
86
	// Gestion des arguments
87
	$balise = $tab_applette_arguments[0];
88
    $tab_arguments = $tab_applette_arguments;
89
	unset($tab_arguments[0]);
90
    foreach($tab_arguments as $argument) {
91
    	if ($argument != '') {
92
	    	$tab_parametres = explode('=', $argument);
93
	    	$options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
94
    	}
95
    }
96
 
97
	//+----------------------------------------------------------------------------------------------------------------+
98
    // Gestion des erreurs de paramètrage
99
	if (!isset($options['site'])) {
100
		$GLOBALS['_PLAN_']['erreurs'][] = sprintf(PLAN_LG_ERREUR_SITE, $balise);
101
	}
102
	if (!isset($options['permalien'])) {
103
		$options['permalien'] = false;
104
	}
105
	if (isset($options['permalien']) && $options['permalien'] != '' && $options['permalien'] != 'oui' && $options['permalien'] != 'non') {
106
		$GLOBALS['_PLAN_']['erreurs'][] = sprintf(PLAN_LG_ERREUR_PERMALIEN, $balise);
107
	} else {
108
		if ($options['permalien'] == 'oui') {
109
			$options['permalien'] = true;
110
		} else if ($options['permalien'] == 'non') {
111
			$options['permalien'] = false;
112
		}
113
	}
114
 
115
    //+----------------------------------------------------------------------------------------------------------------+
116
    // Récupération des données
117
    if (count($GLOBALS['_PLAN_']['erreurs']) == 0) {
118
		$aso_info_menu = GEN_lireInfoMenuContenuDate($GLOBALS['_GEN_commun']['pear_db'], $options['type'], $options['site'], $options['categorie']);
119
		if (count($aso_info_menu) == 0) {
120
			$GLOBALS['_PLAN_']['informations'][] = sprintf(PLAN_LG_INFO_ZERO_PAGE, $options['site']);
121
		} else {
122
			$tab_site = array_map('trim', explode(',', $options['site']));
123
 
124
			foreach ($tab_site as $cle => $site) {
125
				$aso_site_info = GEN_lireInfoSitePrincipalCodeAlpha($GLOBALS['_GEN_commun']['pear_db'], $site, DB_FETCHMODE_ASSOC);
126
				$aso_site['abreviation'] = $site;
127
				if (!empty($aso_site_info['gs_titre'])) {
128
					$titre = $aso_site_info['gs_titre'];
129
				} else {
130
					$titre = $aso_site_info['gs_nom'];
131
				}
132
				$aso_site['titre'] = htmlentities($titre);
133
 
134
				$url_site =& new Pap_URL();
135
				$url_site->setUrlType('SITE');
136
				$url_site->setId($aso_site_info['gs_id_site']);
137
				$aso_site['url'] = $url_site->getUrl();
138
 
139
				$aso_menus = GEN_retournerTableauMenusSiteCodeAlpha($GLOBALS['_GEN_commun']['pear_db'], $site);
140
				$aso_site['pages'] = parserTableauMenus($aso_menus, $options['permalien']);
141
				$GLOBALS['_PLAN_']['sites'][] = $aso_site;
142
			}
143
		}
144
    }
145
 
146
	//+----------------------------------------------------------------------------------------------------------------+
147
    // Extrait les variables et les ajoutes à l'espace de noms local
148
	// Gestion des squelettes
149
	extract($GLOBALS['_PLAN_']);
150
	// Démarre le buffer
151
	ob_start();
152
	// Inclusion du fichier
153
	include(PLAN_CHEMIN_SQUELETTE.PLAN_SQUELETTE_LISTE);
154
	// Récupérer le  contenu du buffer
155
	$sortie = ob_get_contents();
156
	// Arrête et détruit le buffer
157
	ob_end_clean();
158
 
159
	//+----------------------------------------------------------------------------------------------------------------+
160
	// Sortie
161
    return $sortie;
162
}
163
 
164
function parserTableauMenus($aso_menus, $permalien)
165
{
166
    $aso_arbo_site = array();
167
    foreach ($aso_menus as $menu_id => $menu_valeur) {
168
        if (    $menu_valeur['gm_date_fin_validite'] == ''
169
                || $menu_valeur['gm_date_fin_validite'] == '0000-00-00 00:00:00'
170
                || strtotime($menu_valeur['gm_date_fin_validite']) > time()) {
171
			// Initialisation
172
			$aso_page = array();
173
			$aso_page['url'] = PLAN_LG_INCONNU_URL;
174
			$aso_page['nom'] = PLAN_LG_INCONNU_NOM;
175
			$aso_page['titre'] = PLAN_LG_INCONNU_TITRE;
176
			$aso_page['sous_menus'] = 'fermer';
177
 
178
			// Création de l'url
179
			$une_url =& new Pap_URL();
180
			$une_url->setId($menu_id);
181
			$aso_page['url'] = $une_url->getURL();
182
 
183
			// Construction de l'attribut title
184
			$title = '';
185
			if (!empty($menu_valeur['gm_titre'])) {
186
				$title = $menu_valeur['gm_titre'];
187
			} elseif (!empty($menu_valeur['gm_titre_alternatif'])) {
188
				$title = $menu_valeur['gm_titre_alternatif'];
189
			}
190
			$aso_page['titre'] = htmlentities($title);
191
 
192
			// Le nom
193
			$aso_page['nom'] = htmlentities($menu_valeur['gm_nom']);
194
 
195
			// Nous affichons ou pas le permalien
196
			if ($permalien) {
197
				$une_url->setPermalienBool(true);
198
				$aso_page['permalien_url'] = $une_url->getURL();
199
				$aso_page['permalien_nom'] = $une_url->getPermalien();
200
				$une_url->setPermalienBool(false);
201
			}
202
 
203
			// Nous ajoutons les sous-menus s'il y en a.
204
			$retour = parserTableauMenus($menu_valeur['sous_menus'], $permalien);
205
			if (count($retour) != 0) {
206
				$aso_page['sous_menus'] = 'ouvrir_liste';
207
				$aso_arbo_site[] = $aso_page;
208
				$aso_arbo_site = array_merge($aso_arbo_site, $retour);
209
				$aso_arbo_site[]['sous_menus'] = 'fermer_liste';
210
			} else {
211
				$aso_arbo_site[] = $aso_page;
212
			}
213
		}
214
	}
215
	return $aso_arbo_site;
216
}
217
 
218
/* +--Fin du code ----------------------------------------------------------------------------------------+
219
*
220
* $Log: not supported by cvs2svn $
221
*
222
* +-- Fin du code ----------------------------------------------------------------------------------------+
223
*/
224
?>