X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/8782288c3f53321a0f1d41bb9f8450aaf838be14..f4200ccdcc70dccb86086059c453595dcb51674b:/lib/MECON/Marco/Menu.php diff --git a/lib/MECON/Marco/Menu.php b/lib/MECON/Marco/Menu.php index bf4cb8a..4ffe458 100644 --- a/lib/MECON/Marco/Menu.php +++ b/lib/MECON/Marco/Menu.php @@ -106,6 +106,9 @@ class MECON_Marco_Menu { cellspacing="0" cellpadding="0" border="0"'); + $this->_tabla->setLineEnd(''); + $this->_tabla->setTab(''); + $this->_configuracion = $configuracion; } // -X2C @@ -173,14 +176,14 @@ class MECON_Marco_Menu { $i = 1; foreach ($confSec as $sec) { //Veo si tiene permisos para ver la seccion - if (!@$this->_configuracion['obj_permiso']) { + if (!@$this->_configuracion['obj_permiso'] || !@$sec['permisos']) { $ver = true; } - elseif ($this->_configuracion['obj_permiso']->tiene()) { + elseif ($this->_configuracion['obj_permiso']->tiene(@$sec['permisos'])) { $ver = true; } else { - $ver - false; + $ver = false; } if ($ver) { $tmp = new MECON_Marco_Seccion ($sec, $this->_configuracion); @@ -189,9 +192,9 @@ class MECON_Marco_Menu { $ultimo = 1; } array_push($this->_componentesVertical, $tmp->toHtmlVertical($linksel,$ultimo)); - $i++; array_push($this->_secciones,$tmp); } + $i++; } } // -X2C @@ -280,6 +283,21 @@ class MECON_Marco_Menu { } // -X2C + // +X2C Operation 222 + /** + * Devuelve un string con el encabezado de la seccion + * + * @param string $titulo Titulo de la seccion + * + * @return string + * @access private + */ + function _armarEncabezado($titulo) // ~X2C + { + return ''.$titulo.''; + } + // -X2C + } // -X2C Class :MECON_Marco_Menu ?> \ No newline at end of file