Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 766 → Rev 767

/trunk/papyrus/applettes/menu/menu.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: menu.php,v 1.23 2006-03-02 10:49:49 ddelon Exp $
// CVS : $Id: menu.php,v 1.24 2006-03-13 21:00:20 ddelon Exp $
/**
* Applette : menu
*
38,7 → 38,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.23 $ $Date: 2006-03-02 10:49:49 $
*@version $Revision: 1.24 $ $Date: 2006-03-13 21:00:20 $
// +------------------------------------------------------------------------------------------------------+
*/
 
128,7 → 128,7
}
 
//Construction du menu
$xhtml_menu = afficherListeNiveauMultiple( $objet_pear_db, $id_site, $id_langue, $i18n_url ,$niveau_depart,
$xhtml_menu = afficherListeNiveauMultiple( $objet_pear_db, $id_site,$niveau_depart,
$profondeur, $menu_depart, 1, $menu_type, $indent_origine,
$indent_pas, $_GEN_commun, $num_menu);
170,7 → 170,7
* @param integer identifiant d'un menu pére.
* @return string les listes de menus au format XHTML.
*/
function afficherListeNiveauMultiple( &$objet_pear_db, $id_site, $id_langue, $i18n_url, $niveau_depart, $profondeur,
function afficherListeNiveauMultiple( &$objet_pear_db, $id_site, $niveau_depart, $profondeur,
$id_pere_menu_a_deployer, $position, $menu_type, $indent_origine = 12,
$indent_pas = 4, $_GEN_commun, $num_menu)
{
288,7 → 288,7
}
if (!function_exists(cmp)) {
if (!function_exists('cmp')) {
function cmp($a, $b) {
if ($a->gmr_ordre == $b->gmr_ordre) {
return 0;
320,7 → 320,7
// Affichage du menu
$corps .= str_repeat(' ', $indent_origine + ($indent_pas * ($position + 2))).
'<li id="menu_'.$num_menu.'_'.$id_menu_inf.'" class="'.$classe.'">'."\n";
$corps .= afficherEntreeListeMenu( $objet_pear_db, $id_menu_inf, $i18n_url, $niveau_actuel,
$corps .= afficherEntreeListeMenu( $objet_pear_db, $id_menu_inf, $niveau_actuel,
$ligne->gmr_ordre, $position, $menu_type, $indent_origine, $indent_pas, $_GEN_commun, $num_menu);
}
// Pour chaque menu on regarde s'il y a des fils. Si oui, on les déploie.
348,7 → 348,7
if ($resultat_fils->numRows() != 0 && $ligne->gm_id_menu == $GLOBALS['_GEN_commun']['info_menu']->gm_id_menu
|| GEN_etreAncetre($ligne->gm_id_menu, $GLOBALS['_GEN_commun']['info_menu']->gm_id_menu) || $menu_type == 'deroulant') {
$niveau_actuel++;
$corps .= afficherListeNiveauMultiple( $objet_pear_db, $id_site, $id_langue, $i18n_url, $niveau_depart,
$corps .= afficherListeNiveauMultiple( $objet_pear_db, $id_site, $niveau_depart,
$profondeur, $ligne->gm_id_menu, ($position + 3), $menu_type,
null, null, $_GEN_commun, $num_menu);
// On ramène $niveau_actuel un cran plus bas
393,7 → 393,7
* @param integer ordre du menu dans le niveau.
* @return string liste représentant le menu duHTML
*/
function afficherEntreeListeMenu($db, $menu_id, $i18n, $niveau, $ordre, $position, $menu_type, $indent_origine = 12, $indent_pas = 4, $_GEN_commun, $num_menu)
function afficherEntreeListeMenu($db, $menu_id, $niveau, $ordre, $position, $menu_type, $indent_origine = 12, $indent_pas = 4, $_GEN_commun, $num_menu)
{
// GEN_I18N_ID_DEFAUT;
459,6 → 459,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.23 2006/03/02 10:49:49 ddelon
* Fusion branche multilinguisme dans branche principale
*
* Revision 1.22.2.2 2006/02/28 14:02:11 ddelon
* Finition multilinguisme
*