Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: plan.php,v 1.6 2006-10-06 10:03:14 florian Exp $
|
22 |
// CVS : $Id: plan.php,v 1.7 2006-10-11 18:05:15 jp_milcent Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Application réalisant le plan d'un site web géré par Papyrus.
|
24 |
* Application réalisant le plan d'un site web géré par Papyrus.
|
25 |
*
|
25 |
*
|
26 |
* Construit une liste de listes représentant le plans des sites web gérés par Papyrus.
|
26 |
* Construit une liste de listes représentant le plans des sites web gérés par Papyrus.
|
27 |
* Cette application est fortement dépendante de Papyrus puisqu'elle se base sur
|
27 |
* Cette application est fortement dépendante de Papyrus puisqu'elle se base sur
|
Line 31... |
Line 31... |
31 |
//Auteur original :
|
31 |
//Auteur original :
|
32 |
*@author Alexandre GRANIER <alexandrel@tela-botanica.org>
|
32 |
*@author Alexandre GRANIER <alexandrel@tela-botanica.org>
|
33 |
//Autres auteurs :
|
33 |
//Autres auteurs :
|
34 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
34 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
35 |
*@copyright Tela-Botanica 2000-2004
|
35 |
*@copyright Tela-Botanica 2000-2004
|
36 |
*@version $Revision: 1.6 $ $Date: 2006-10-06 10:03:14 $
|
36 |
*@version $Revision: 1.7 $ $Date: 2006-10-11 18:05:15 $
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
*/
|
38 |
*/
|
Line 39... |
Line 39... |
39 |
|
39 |
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
Line 98... |
Line 98... |
98 |
if (!empty($site['gs_titre'])) {
|
98 |
if (!empty($site['gs_titre'])) {
|
99 |
$titre = $site['gs_titre'];
|
99 |
$titre = $site['gs_titre'];
|
100 |
} else {
|
100 |
} else {
|
101 |
$titre = $site['gs_nom'];
|
101 |
$titre = $site['gs_nom'];
|
102 |
}
|
102 |
}
|
- |
|
103 |
$url_site =& new Pap_URL();
|
- |
|
104 |
$url_site->setUrlType('SITE');
|
103 |
$retour .= '<h2>'.$titre.'</h2>'."\n";
|
105 |
$url_site->setId($site['gs_id_site']);
|
- |
|
106 |
$retour .= '<h2><a href="'.$url_site->getUrl().'">'.htmlentities($titre).'</a></h2>'."\n";
|
104 |
}
|
107 |
}
|
105 |
$retour .= '<ul class="plan_site_'.$site['gs_nom'].'" >'."\n";
|
108 |
$retour .= '<ul class="plan_site_'.$site['gs_nom'].'" >'."\n";
|
106 |
$aso_menus = GEN_retournerTableauMenusSiteCodeAlpha($bdd, $site['gs_code_alpha']);
|
109 |
$aso_menus = GEN_retournerTableauMenusSiteCodeAlpha($bdd, $site['gs_code_alpha']);
|
107 |
$retour .= parserTableauMenus($aso_menus, PLAN_AFFICHER_PERMALIEN);
|
110 |
$retour .= parserTableauMenus($aso_menus, PLAN_AFFICHER_PERMALIEN);
|
108 |
$retour .= '</ul>'."\n";
|
111 |
$retour .= '</ul>'."\n";
|
Line 128... |
Line 131... |
128 |
$une_url->setId($menu_id);
|
131 |
$une_url->setId($menu_id);
|
Line 129... |
Line 132... |
129 |
|
132 |
|
130 |
// Construction de l'attribut title
|
133 |
// Construction de l'attribut title
|
131 |
$title = '';
|
134 |
$title = '';
|
132 |
if (!empty($menu_valeur['gm_titre'])) {
|
135 |
if (!empty($menu_valeur['gm_titre'])) {
|
133 |
$title = ' title="'.$menu_valeur['gm_titre'].'"';
|
136 |
$title = ' title="'.htmlentities($menu_valeur['gm_titre']).'"';
|
134 |
} elseif (!empty($menu_valeur['gm_titre_alternatif'])) {
|
137 |
} elseif (!empty($menu_valeur['gm_titre_alternatif'])) {
|
135 |
$title = ' title="'.$menu_valeur['gm_titre_alternatif'].'"';
|
138 |
$title = ' title="'.htmlentities($menu_valeur['gm_titre_alternatif']).'"';
|
Line 136... |
Line 139... |
136 |
}
|
139 |
}
|
137 |
|
140 |
|
Line 138... |
Line 141... |
138 |
// Construction du lien
|
141 |
// Construction du lien
|
139 |
$retour .= '<a href="'.$une_url->getURL().'"'.$title.'>'.$menu_valeur['gm_nom'].'</a>';
|
142 |
$retour .= '<a href="'.$une_url->getURL().'"'.$title.'>'.htmlentities($menu_valeur['gm_nom']).'</a>';
|
140 |
|
143 |
|
141 |
// Nous affichons ou pas le permalien
|
144 |
// Nous affichons ou pas le permalien
|
Line 162... |
Line 165... |
162 |
|
165 |
|
163 |
|
166 |
|
164 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
167 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
168 |
*
|
- |
|
169 |
* $Log: not supported by cvs2svn $
|
- |
|
170 |
* Revision 1.6 2006/10/06 10:03:14 florian
|
165 |
*
|
171 |
* amelioration: affichage du plan des menus d'administration, dans le monde administration
|
166 |
* $Log: not supported by cvs2svn $
|
172 |
*
|
167 |
* Revision 1.5 2006/03/02 10:49:49 ddelon
|
173 |
* Revision 1.5 2006/03/02 10:49:49 ddelon
|
168 |
* Fusion branche multilinguisme dans branche principale
|
174 |
* Fusion branche multilinguisme dans branche principale
|
169 |
*
|
175 |
*
|