345 |
jpm |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
class Text_Wiki_Render_Xhtml_Plan extends Text_Wiki_Render {
|
|
|
4 |
|
|
|
5 |
/**
|
|
|
6 |
*
|
|
|
7 |
* Renders a token into text matching the requested format.
|
|
|
8 |
*
|
|
|
9 |
* @access public
|
|
|
10 |
*
|
|
|
11 |
* @param array $options The "options" portion of the token (second
|
|
|
12 |
* element).
|
|
|
13 |
*
|
|
|
14 |
* @return string The text rendered from the token options.
|
|
|
15 |
*
|
|
|
16 |
*/
|
|
|
17 |
|
|
|
18 |
function token($options)
|
|
|
19 |
{
|
|
|
20 |
// Initialisation des variables
|
347 |
jpm |
21 |
$bdd =& $GLOBALS['_GEN_commun']['pear_db'];
|
345 |
jpm |
22 |
$sortie = '';
|
|
|
23 |
$sites = $options['site'];
|
|
|
24 |
// Récupération de l'affichage ou pas des raccourcis
|
|
|
25 |
if (isset($options['permalien'])) {
|
|
|
26 |
$permalien = $options['permalien'];
|
|
|
27 |
}
|
|
|
28 |
$tab_site = array_map('trim', explode(',', $sites));
|
347 |
jpm |
29 |
|
345 |
jpm |
30 |
foreach ($tab_site as $cle => $site) {
|
347 |
jpm |
31 |
if (count($tab_site) > 1) {
|
|
|
32 |
$aso_site = GEN_lireInfoSitePrincipalCodeAlpha($bdd, $site, DB_FETCHMODE_ASSOC);
|
|
|
33 |
if (!empty($aso_site['gs_titre'])) {
|
|
|
34 |
$titre = $aso_site['gs_titre'];
|
|
|
35 |
} else {
|
|
|
36 |
$titre = $aso_site['gs_nom'];
|
|
|
37 |
}
|
375 |
jpm |
38 |
$sortie .= '<h2>'.htmlentities($titre).'</h2>'."\n";
|
347 |
jpm |
39 |
}
|
|
|
40 |
$sortie .= '<ul class="plan_site_'.$site.'" >'."\n";
|
|
|
41 |
$aso_menus = GEN_retournerTableauMenusSiteCodeAlpha($bdd, $site);
|
345 |
jpm |
42 |
$sortie .= $this->parserTableauMenus($aso_menus, $permalien);
|
347 |
jpm |
43 |
$sortie .= '</ul>'."\n";
|
345 |
jpm |
44 |
}
|
|
|
45 |
|
|
|
46 |
return $sortie;
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
function parserTableauMenus($aso_menus, $permalien)
|
|
|
50 |
{
|
|
|
51 |
$sortie = '';
|
|
|
52 |
// Création de l'url
|
|
|
53 |
foreach ($aso_menus as $menu_id => $menu_valeur) {
|
375 |
jpm |
54 |
if ( $menu_valeur['gm_date_fin_validite'] == ''
|
|
|
55 |
|| $menu_valeur['gm_date_fin_validite'] == '0000-00-00 00:00:00'
|
|
|
56 |
|| strtotime($menu_valeur['gm_date_fin_validite']) > time()) {
|
|
|
57 |
$sortie .= '<li>';
|
|
|
58 |
// Création de l'url
|
|
|
59 |
$une_url =& new Pap_URL('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']);
|
|
|
60 |
$une_url->setId($menu_id);
|
|
|
61 |
|
|
|
62 |
// Construction de l'attribut title
|
|
|
63 |
$title = '';
|
|
|
64 |
if (!empty($menu_valeur['gm_titre'])) {
|
|
|
65 |
$title = ' title="'.htmlentities($menu_valeur['gm_titre']).'"';
|
|
|
66 |
} elseif (!empty($menu_valeur['gm_titre_alternatif'])) {
|
|
|
67 |
$title = ' title="'.htmlentities($menu_valeur['gm_titre_alternatif']).'"';
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
// Construction du lien
|
|
|
71 |
$sortie .= '<a href="'.$une_url->getURL().'"'.$title.'>'.htmlentities($menu_valeur['gm_nom']).'</a>';
|
|
|
72 |
|
|
|
73 |
// Nous affichons ou pas le permalien
|
|
|
74 |
if ($permalien) {
|
|
|
75 |
$une_url->setPermalien(true);
|
|
|
76 |
$sortie .= ' <span class="plan_permalien">'.'('.$une_url->getURL().')'.'</span>';
|
|
|
77 |
$une_url->setPermalien(false);
|
|
|
78 |
}
|
|
|
79 |
|
|
|
80 |
// Nous ajoutons les sous-menus s'il y en a.
|
|
|
81 |
$retour = $this->parserTableauMenus($menu_valeur['sous_menus'], $permalien);
|
|
|
82 |
if ($retour != '') {
|
|
|
83 |
$sortie .= "\n".'<ul>'."\n".$retour."\n".'</ul>'."\n";
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
$sortie .= '</li>'."\n";
|
345 |
jpm |
87 |
}
|
|
|
88 |
}
|
|
|
89 |
return $sortie;
|
|
|
90 |
}
|
|
|
91 |
}
|
|
|
92 |
?>
|