/**
* Clase seccion para el manejo de las secciones
*
+ * @package MECON_Marco
* @access public
*/
class Seccion extends Pagina {
* @access public
* @static
*/
- function Seccion($seccion, $configuracion)// ~X2C
+ function Seccion($seccion, $configuracion) // ~X2C
{
- if (array_key_exists('nombre',$seccion)) {
- $this->_nombre = $seccion['nombre'];
- }
- 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);
- if (array_key_exists('link', $seccion)) {
+ $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::Pagina($seccion['link']);
}
$this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
- $configuracion['directorios']['imagenes'], $this->_nombre, $configuracion['directorios']['root'].'/'.$this->_link);
-
- if (array_key_exists('tipoMenu', $seccion)) {
- $this->_tipoMenu = $seccion['tipoMenu'];
- }
+ $configuracion['directorios']['imagenes'], $this->_nombre,
+ $configuracion['directorios']['root'].'/'.$this->_link);
if (!is_null($configuracion)) {
$this->_configuracion = $configuracion;
}
* @return string
* @access public
*/
- function toHtml($link_sel)// ~X2C
+ function toHtml($link_sel) // ~X2C
{
if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
$this->_imagen->setHabilitada(false);
* @return void
* @access private
*/
- function _cargarHijos($hijos)// ~X2C
+ function _cargarHijos($hijos) // ~X2C
{
if ($this->_tipoMenu == 'vertical'){
$tmp = new MenuVertical($this->_configuracion);
* @return void
* @access private
*/
- function _desSerializarArraySecciones()// ~X2C
+ function _desSerializarArraySecciones() // ~X2C
{
$file_cache = strtr($this->_configuracion['directorios']['root'],'/','_');
$tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache;
* @return int
* @access public
*/
- function verifSeccionSeleccionada($link_sel)// ~X2C
+ function verifSeccionSeleccionada($link_sel) // ~X2C
{
$tmp = $this->_desSerializarArraySecciones();
$retorno = 0;
* @return string
* @access public
*/
- function toHtmlVertical($link_sel, $ultimo = false)// ~X2C
+ function toHtmlVertical($link_sel, $ultimo = false) // ~X2C
{
$style = "text-decoration:none";
} // -X2C Class :Seccion
-?>
+?>
\ No newline at end of file