$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;
}
$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);
}
$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;
}
}