X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/f1e8dd28b05b78b0992493d8508bddaab2bd13d6..af6c2656b4ea662ac1707f7fcd8a1d735dd717d8:/lib/MECON/Marco/Menu.php diff --git a/lib/MECON/Marco/Menu.php b/lib/MECON/Marco/Menu.php index c2eddac..32d81bd 100644 --- a/lib/MECON/Marco/Menu.php +++ b/lib/MECON/Marco/Menu.php @@ -95,7 +95,7 @@ class Menu { * @return void * @access public */ - function Menu($configuracion = null) // ~X2C + function Menu($configuracion = null)// ~X2C { $this->_componentes = array (); //Inicializo vacio el array de componentes del menu $this->_componentesVertical = array (); //Inicializo vacio el array de componentes del menu @@ -112,7 +112,7 @@ class Menu { * @return void * @access private */ - function _generarArchivo() // ~X2C + function _generarArchivo()// ~X2C { $s = serialize($this); $fp = fopen($this->_configuracion['directorios']['root'].'/'.MENU_SERIALIZADO,'w'); @@ -130,7 +130,7 @@ class Menu { * @return string * @access private */ - function _obtenerArchivo($directorio) // ~X2C + function _obtenerArchivo($directorio)// ~X2C { $s = implode("", @file($this->_configuracion['directorios']['root'].'/'.MENU_SERIALIZADO)); return unserialize($s); @@ -145,7 +145,7 @@ class Menu { * @return array * @access private */ - function _obtenerConfSecciones() // ~X2C + function _obtenerConfSecciones()// ~X2C { return $this->_configuracion['secciones']; } @@ -160,7 +160,7 @@ class Menu { * @return void * @access private */ - function _armarArraySecciones($confSec) // ~X2C + function _armarArraySecciones($confSec)// ~X2C { $linksel = $_SERVER['PHP_SELF']; $ultimo = 0; @@ -187,13 +187,13 @@ class Menu { * @return void * @access private */ - function _serializarArraySecciones() // ~X2C + function _serializarArraySecciones()// ~X2C { $secciones = $this->_configuracion['secciones']; $tmp = array(); $tmp2 = array(); - $PATH = $this->_configuracion['directorios']['www']; + $PATH = $this->_configuracion['directorios']['root']; foreach ($secciones as $sec) { //Chequeo las secciones $tmp[$sec['nombre']] = array ($PATH.'/'.$sec['link']); @@ -229,7 +229,7 @@ class Menu { * @return void * @access public */ - function agregarComponente($componente) // ~X2C + function agregarComponente($componente)// ~X2C { array_push($this->_componentes,$componente); } @@ -243,7 +243,7 @@ class Menu { * @return string * @access public */ - function toHtml() // ~X2C + function toHtml()// ~X2C { return $this->_tabla->toHtml(); } @@ -257,7 +257,7 @@ class Menu { * @return string * @access public */ - function menuToHtml() // ~X2C + function menuToHtml()// ~X2C { return $this->_menuHtml; } @@ -265,4 +265,4 @@ class Menu { } // -X2C Class :Menu -?> +?> \ No newline at end of file