X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/b687b65a2231029a3791756823d934e56e365baa..997feeab434ec1ab5b6b94b8255068d732f8085f:/lib/MECON/Marco/Seccion.php diff --git a/lib/MECON/Marco/Seccion.php b/lib/MECON/Marco/Seccion.php index 46f75e1..426d0c1 100644 --- a/lib/MECON/Marco/Seccion.php +++ b/lib/MECON/Marco/Seccion.php @@ -24,19 +24,15 @@ Autor: Martin Marrese $Id$ -----------------------------------------------------------------------------*/ - -//Require Agregados por MMARRE, no pasan por el xmi2code require_once 'MECON/Marco/ImagenAnimada.php'; require_once 'MECON/Marco/Menu.php'; require_once 'MECON/Marco/MenuHorizontal.php'; require_once 'MECON/Marco/MenuVertical.php'; require_once 'MECON/Marco/MenuOculto.php'; -// +X2C Class 16 :MECON_Marco_Seccion /** * Clase para el manejo de las secciones * - * @package MECON_Marco * @access public */ class MECON_Marco_Seccion { @@ -96,9 +92,6 @@ class MECON_Marco_Seccion { */ var $_link = ''; - // ~X2C - - // +X2C Operation 63 /** * Recibe como parametro el nombre de la seccion * @@ -108,7 +101,7 @@ class MECON_Marco_Seccion { * @return void * @access public */ - function MECON_Marco_Seccion($seccion, $configuracion) // ~X2C + function MECON_Marco_Seccion($seccion, $configuracion) { $this->_nombre = @strval($seccion['nombre']); $imgComun = @strval($seccion['imagenComun']); @@ -116,13 +109,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; } @@ -130,9 +125,7 @@ class MECON_Marco_Seccion { $this->_cargarHijos($seccion['hijos']); } } - // -X2C - // +X2C Operation 64 /** * Funcion que devuelve un string con el html a imprimir por pantalla. * @@ -141,7 +134,7 @@ class MECON_Marco_Seccion { * @return string * @access public */ - function toHtml($link_sel) // ~X2C + function toHtml($link_sel) { if (!$this->_configuracion['links']) { $this->_imagen->setHabilitada(false); @@ -151,9 +144,7 @@ class MECON_Marco_Seccion { } return $this->_imagen->toHtml(); } - // -X2C - // +X2C Operation 84 /** * Carga el array con los objetos hijos de la seccion * @@ -162,7 +153,7 @@ class MECON_Marco_Seccion { * @return void * @access private */ - function _cargarHijos($hijos) // ~X2C + function _cargarHijos($hijos) { if ($this->_tipoMenu == 'vertical'){ $tmp = new MECON_Marco_MenuVertical($this->_configuracion); @@ -174,21 +165,20 @@ 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); } $this->_hijos = $tmp; } - // -X2C - // +X2C Operation 127 /** * Funcion que se encarga de desserializar el array asociativo paginas-secciones. * * @return void * @access private */ - function _desSerializarArraySecciones() // ~X2C + function _desSerializarArraySecciones() { $file_cache = strtr($this->_configuracion['directorios']['root'],'/','_'); $tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache; @@ -201,36 +191,32 @@ class MECON_Marco_Seccion { return null; } } - // -X2C - // +X2C Operation 129 /** - * Funcion que se encarga de verificar si la pagina a la cual se quiere acceder pertenece a la seccion que estoy dibujando. Se utiliza como agregado en toHtml. -Devuelve 1 si pertenece a la seccion, en caso contrario 0. + * Funcion que se encarga de verificar si la pagina a la cual se quiere + * acceder pertenece a la seccion que estoy dibujando. Se utiliza como + * agregado en toHtml. + * Devuelve 1 si pertenece a la seccion, en caso contrario 0. * * @param string $link_sel Nombre de la pagina a la cual se quiere acceder. * * @return int * @access public */ - function verifSeccionSeleccionada($link_sel) // ~X2C + function verifSeccionSeleccionada($link_sel) { $tmp = $this->_desSerializarArraySecciones(); $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; } } } return $retorno; } - // -X2C - - - - // +X2C Operation 202 + /** * Devuelve el html a mostrar en pantalla * @@ -240,7 +226,7 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0. * @return string * @access public */ - function toHtmlVertical($link_sel, $ultimo = false) // ~X2C + function toHtmlVertical($link_sel, $ultimo = false) { $style = "text-decoration:none"; @@ -255,27 +241,16 @@ 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 - -} // -X2C Class :MECON_Marco_Seccion - +} ?> \ No newline at end of file