X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/9aa1852b91ffebb85791293a28556e9c113c2dbf..8266508aec785b49328716a9a95ac22a8735a3cc:/lib/MECON/Marco/Seccion.php diff --git a/lib/MECON/Marco/Seccion.php b/lib/MECON/Marco/Seccion.php index 8a2433c..0b38c27 100644 --- a/lib/MECON/Marco/Seccion.php +++ b/lib/MECON/Marco/Seccion.php @@ -116,13 +116,15 @@ 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, $configuracion['directorios']['imagenes'], $this->_nombre, $configuracion['directorios']['root'].'/'. - $this->_link); + $this->_link, + @strval($seccion['alt'])); if (!is_null($configuracion)) { $this->_configuracion = $configuracion; } @@ -174,6 +176,7 @@ class MECON_Marco_Seccion { $tmp = new MECON_Marco_MenuOculto($this->_configuracion); } foreach ($hijos as $hijo) { + $hijo['alt'] = @$hijo['alt'] ? $hijo['alt'] : $hijo['nombre']; $hijo['nombre'] = $this->_nombre.'-'.$hijo['nombre']; $tmp->agregarComponente($hijo); } @@ -219,7 +222,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; } }