X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/a420f0a24fe60b19c139999a970efa9c85596752..ab276d0f5ae833dd3b9dc8d3a2c92877277984ec:/lib/MECON/Marco/Seccion.php?ds=sidebyside diff --git a/lib/MECON/Marco/Seccion.php b/lib/MECON/Marco/Seccion.php index 4d3b060..0d6719a 100644 --- a/lib/MECON/Marco/Seccion.php +++ b/lib/MECON/Marco/Seccion.php @@ -1,31 +1,28 @@ - -// +----------------------------------------------------------------------+ -// -// $Id$ -// $Author$ -// $URL$ -// $Date$ -// $Rev$ -// + +------------------------------------------------------------------------------- +$Id$ +-----------------------------------------------------------------------------*/ // +X2C includes require_once 'MECON/Marco/Pagina.php'; @@ -38,14 +35,14 @@ require_once 'MECON/Marco/MenuHorizontal.php'; require_once 'MECON/Marco/MenuVertical.php'; require_once 'MECON/Marco/MenuOculto.php'; - -// +X2C Class 16 :Seccion +// +X2C Class 16 :MECON_Marco_Seccion /** * Clase seccion para el manejo de las secciones * + * @package MECON_Marco * @access public */ -class Seccion extends Pagina { +class MECON_Marco_Seccion extends MECON_Marco_Pagina { /** * Nombre de la seccion. * @@ -103,36 +100,23 @@ class Seccion extends Pagina { * * @return void * @access public - * @static */ - function Seccion($seccion, $configuracion) // ~X2C + function MECON_Marco_Seccion($seccion, $configuracion) // ~X2C { - if (array_key_exists('nombre',$seccion)) { - $this->_nombre = $seccion['nombre']; + $this->_nombre = @strval($seccion['nombre']); + $imgComun = @strval($seccion['imagenComun']); + $imgMouseOn = @strval($seccion['imagenMouseOn']); + $imgSelect = @strval($seccion['imagenSelect']); + $this->_tipoMenu = @strval($seccion['tipoMenu']); + if (@$seccion['link']) { + parent::MECON_Marco_Pagina($seccion['link']); } - if (array_key_exists('imagenComun', $seccion)) - $imgComun = $seccion['imagenComun']; - else - unset($imgComun); - if (array_key_exists('imagenMouseOn', $seccion)) - $imgMouseOn = $seccion['imagenMouseOn']; - else - unset($imgMouseOn); - if (array_key_exists('imagenSelect', $seccion)) - $imgSelect = $seccion['imagenSelect']; - else - unset($imgSelect); - $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect, $configuracion['directorios']['imagenes']); - - if (array_key_exists('tipoMenu', $seccion)) { - $this->_tipoMenu = $seccion['tipoMenu']; - } + $this->_imagen = new MECON_Marco_ImagenAnimada($imgComun, $imgMouseOn, $imgSelect, + $configuracion['directorios']['imagenes'], $this->_nombre, + $configuracion['directorios']['root'].'/'.$this->_link); if (!is_null($configuracion)) { $this->_configuracion = $configuracion; } - if (array_key_exists('link', $seccion)) { - parent::Pagina($seccion['link']); - } if (array_key_exists('hijos', $seccion)) { $this->_cargarHijos($seccion['hijos']); } @@ -150,25 +134,13 @@ class Seccion extends Pagina { */ function toHtml($link_sel) // ~X2C { - if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) { - $link_start = ''; - $link_end = ''; - $link_start2 = ''; - } - else { - $link_start = ''; - $link_start2 = '_nombre.'\',\'\',\''.$this->_imagen->_imgMouseOn.'\',1)>'; - $link_end = ''; + if (!$this->_configuracion['links']) { + $this->_imagen->setHabilitada(false); } - if ($this->verifSeccionSeleccionada($link_sel)) { - $sec = $link_start."_nombre."\" src=\"".$this->_imagen->_imgSelect."\" border=\"0\" alt=\"".$this->_imagen->_alt."\">".$link_end; - } - else { - $sec = $link_start2."_nombre."\" src=\"".$this->_imagen->_imgComun."\" border=\"0\" alt=\"".$this->_imagen->_alt."\">".$link_end; + $this->_imagen->setSeleccionada(true); } - - return $sec; + return $this->_imagen->toHtml(); } // -X2C @@ -184,13 +156,13 @@ class Seccion extends Pagina { function _cargarHijos($hijos) // ~X2C { if ($this->_tipoMenu == 'vertical'){ - $tmp = new MenuVertical($this->_configuracion); + $tmp = new MECON_Marco_MenuVertical($this->_configuracion); } elseif ($this->_tipoMenu == 'horizontal') { - $tmp = new MenuHorizontal($this->_configuracion); + $tmp = new MECON_Marco_MenuHorizontal($this->_configuracion); } else { - $tmp = new MenuOculto($this->_configuracion); + $tmp = new MECON_Marco_MenuOculto($this->_configuracion); } foreach ($hijos as $hijo) { $tmp->agregarComponente($hijo); @@ -260,12 +232,12 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0. { $style = "text-decoration:none"; - if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) { + if (!$this->_configuracion['links']) { $link_start = ''; $link_end = ''; } else { - $link_start = ''; + $link_start = ''; $link_end = ''; } @@ -292,6 +264,6 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0. } // -X2C -} // -X2C Class :Seccion +} // -X2C Class :MECON_Marco_Seccion -?> +?> \ No newline at end of file