* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /** * \file htdocs/admin/menus/menu.js.php * \brief File for js menu * \version $Id$ */ //if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language //if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url. if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled cause need to do translations if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK',1); if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); if (! defined('NOLOGIN')) define('NOLOGIN',1); if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU',1); if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML',1); if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); require_once("../../master.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/functions.lib.php"); if (! empty($_GET["lang"])) $langs->setDefaultLang($_GET["lang"]); // If language was forced on URL by the main.inc.php $langs->load("main",0,1); ?> // Tests pour navigateurs var OPE = (window.opera) ? true : false; var IE = (document.all && !OPE) ? true : false; var MOZ = (!IE && !OPE) ? true : false; // ----------------------------------------------------- // Fonction d'initialisation de l'arbre function arbre() { // Choix de la balise contenant le texte. par defaut. balise = "STRONG"; // Presentation de l'arbre au depart : deployee ('yes') ou fermee ('no') extend = "no"; // Textes du lien plier / deplier plier_text = 'transnoentities("UndoExpandAll"); ?>'; plier_title = 'Replier tous les noeuds de l\'arbre' deplier_text = 'transnoentities("ExpandAll"); ?>'; deplier_title = 'Deplier tous les noeuds de l\'arbre' // Recuperation de tous les arbres de la page uls = getElBy('ul','class','arbre'); for (uli=0;uli < uls.length;uli++) { ul = uls[uli]; linkSwitch(ul); processULEL(ul); plier(ul,'replier'); } } // ------------------------------------------------------- // Creation des liens plier /deplier tout function linkSwitch(ul) { var a=document.createElement('a'); a.setAttribute('href','#'); if (extend=='yes') { a.appendChild(document.createTextNode(plier_text)); a.setAttribute('title',plier_title); } else { a.appendChild(document.createTextNode(deplier_text)); a.setAttribute('title',deplier_title); } var parbre = document.createElement('p'); parbre.setAttribute('class','arbre-switch'); parbre.appendChild(a); ul.parentNode.insertBefore(parbre,ul); listenlink(ul); } // Gestion des Clics sur les liens plier / deplier tout function listenlink(ul) { var link = ul.previousSibling.childNodes[0]; link.onclick = function() { if (this.childNodes[0].nodeValue == plier_text) { plier(ul,'replier'); this.childNodes[0].nodeValue = deplier_text; this.setAttribute('title',deplier_title); } else { plier(ul,'deplier'); this.childNodes[0].nodeValue = plier_text; this.setAttribute('title',plier_title); } return false; } } // Action Plier / deplier tout function plier(ul,act) { for (var i=0; i