X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/8782288c3f53321a0f1d41bb9f8450aaf838be14..dee12e5810156419e529dc20c5515f8a82b1acea:/lib/MECON/Marco/Seccion.php diff --git a/lib/MECON/Marco/Seccion.php b/lib/MECON/Marco/Seccion.php index a8391b7..0489872 100644 --- a/lib/MECON/Marco/Seccion.php +++ b/lib/MECON/Marco/Seccion.php @@ -116,6 +116,7 @@ class MECON_Marco_Seccion { $imgSelect = @strval($seccion['imagenSelect']); $this->_tipoMenu = @strval($seccion['tipoMenu']); $this->_link = @strval($seccion['link']); + $this->_imagen = new MECON_Marco_ImagenAnimada( $imgComun, $imgMouseOn, $imgSelect, @@ -174,6 +175,7 @@ class MECON_Marco_Seccion { $tmp = new MECON_Marco_MenuOculto($this->_configuracion); } foreach ($hijos as $hijo) { + $hijo['nombre'] = $this->_nombre.'-'.$hijo['nombre']; $tmp->agregarComponente($hijo); } $this->_hijos = $tmp; @@ -218,7 +220,7 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0. $retorno = 0; if (isset($tmp) && array_key_exists($this->_nombre,$tmp)) { foreach ($tmp[$this->_nombre] as $t) { - if ($link_sel == $t) { + if (rtrim($link_sel, '/') == rtrim($t, '/')) { $retorno = 1; } } @@ -254,23 +256,15 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0. $sec = array (); if ($this->verifSeccionSeleccionada($link_sel)) { - if ($ultimo) { - $sec[] = $link_start.''.$link_end; - } - else { - $sec[] = $link_start.''.$link_end; - } + $sec[] = $link_start.''.$link_end; } else { - if ($ultimo) { - $sec[] = $link_start.''.$link_end; - } - else { - $sec[] = $link_start.''.$link_end; - } + $sec[] = $link_start.''.$link_end; } - $sec[] = ''.$link_start.'  '.$this->_nombre.$link_end.''; + $nombre = strstr($this->_nombre, '-'); + $nombre = substr($nombre, 1); + $sec[] = '

  '.$nombre.'

'; return $sec; } // -X2C