]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco/Seccion.php
Finalizo la poda. Faltan los permisos.
[mecon/meconlib.git] / lib / MECON / Marco / Seccion.php
index e3d54286f9e05db4ef9812b33919fc94d65058b1..14b538f859038e9796251b09f746ae6d295e494d 100644 (file)
@@ -1,31 +1,28 @@
-<?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
-// +----------------------------------------------------------------------+
-// | PHP Version 4                                                        |
-// +----------------------------------------------------------------------+
-// | Copyright (c) 1997-2003 The PHP Group                                |
-// +----------------------------------------------------------------------+
-// | This source file is subject to version 2.02 of the PHP license,      |
-// | that is bundled with this package in the file LICENSE, and is        |
-// | available at through the world-wide-web at                           |
-// | http://www.php.net/license/2_02.txt.                                 |
-// | If you did not receive a copy of the PHP license and are unable to   |
-// | obtain it through the world-wide-web, please send a note to          |
-// | license@php.net so we can mail you a copy immediately.               |
-// +----------------------------------------------------------------------+
-// | Created: Mon Apr 14 16:23:22 2003
-// | Author:  Martin Marrese <mmarre@mecon.gov.ar>
-// +----------------------------------------------------------------------+
-//
-// $Id$
-// $Author$
-// $URL$
-// $Date$
-// $Rev$
-//
+<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
+-------------------------------------------------------------------------------
+                             Ministerio de Economía
+                                    meconlib
+-------------------------------------------------------------------------------
+This file is part of meconlib.
 
 
-#require_once 'PEAR.php';
+meconlib is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2 of the License, or (at your option)
+any later version.
 
 
+meconlib is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+You should have received a copy of the GNU General Public License; if not,
+write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+Boston, MA  02111-1307  USA
+-------------------------------------------------------------------------------
+Creado: Mon Apr 14 16:23:22 2003
+Autor:  Martin Marrese <mmarre@mecon.gov.ar>
+-------------------------------------------------------------------------------
+$Id$
+-----------------------------------------------------------------------------*/
 
 // +X2C includes
 require_once 'MECON/Marco/Pagina.php';
 
 // +X2C includes
 require_once 'MECON/Marco/Pagina.php';
@@ -38,21 +35,21 @@ require_once 'MECON/Marco/MenuHorizontal.php';
 require_once 'MECON/Marco/MenuVertical.php';
 require_once 'MECON/Marco/MenuOculto.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
  *
 /**
  * Clase seccion para el manejo de las secciones
  *
+ * @package MECON_Marco
  * @access public
  */
  * @access public
  */
-class Seccion extends Pagina {
+class MECON_Marco_Seccion extends MECON_Marco_Pagina {
     /**
      * Nombre de la seccion.
      *
      * @var    string $nombre
      * @access private
      */
     /**
      * Nombre de la seccion.
      *
      * @var    string $nombre
      * @access private
      */
-    var $_nombre;
+    var $_nombre = '';
 
     /**
      * Este es el nombre de la imagen
 
     /**
      * Este es el nombre de la imagen
@@ -76,7 +73,7 @@ class Seccion extends Pagina {
      * @var    string $tipoMenu
      * @access private
      */
      * @var    string $tipoMenu
      * @access private
      */
-    var $_tipoMenu;
+    var $_tipoMenu = '';
 
     /**
      * Array con la configuracion del sistema
 
     /**
      * Array con la configuracion del sistema
@@ -84,13 +81,13 @@ class Seccion extends Pagina {
      * @var    array $configuracion
      * @access private
      */
      * @var    array $configuracion
      * @access private
      */
-    var $_configuracion;
+    var $_configuracion = array();
 
     /**
      * @var    string $menuHtml
      * @access private
      */
 
     /**
      * @var    string $menuHtml
      * @access private
      */
-    var $_menuHtml;
+    var $_menuHtml = '';
 
     // ~X2C
 
 
     // ~X2C
 
@@ -103,9 +100,8 @@ class Seccion extends Pagina {
      *
      * @return void
      * @access public
      *
      * @return void
      * @access public
-     * @static
      */
      */
-    function Seccion($seccion, $configuracion)// ~X2C
+    function MECON_Marco_Seccion($seccion, $configuracion) // ~X2C
     {
         $this->_nombre   = @strval($seccion['nombre']);
         $imgComun        = @strval($seccion['imagenComun']);
     {
         $this->_nombre   = @strval($seccion['nombre']);
         $imgComun        = @strval($seccion['imagenComun']);
@@ -113,11 +109,15 @@ class Seccion extends Pagina {
         $imgSelect       = @strval($seccion['imagenSelect']);
         $this->_tipoMenu = @strval($seccion['tipoMenu']);
         if (@$seccion['link']) {
         $imgSelect       = @strval($seccion['imagenSelect']);
         $this->_tipoMenu = @strval($seccion['tipoMenu']);
         if (@$seccion['link']) {
-            parent::Pagina($seccion['link']);
+            parent::MECON_Marco_Pagina($seccion['link']);
         }        
         }        
-        $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
-            $configuracion['directorios']['imagenes'], $this->_nombre,
-            $configuracion['directorios']['root'].'/'.$this->_link);
+        $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 (!is_null($configuracion)) {
             $this->_configuracion = $configuracion;
         }
@@ -136,9 +136,9 @@ class Seccion extends Pagina {
      * @return string
      * @access public
      */
      * @return string
      * @access public
      */
-    function toHtml($link_sel)// ~X2C
+    function toHtml($link_sel) // ~X2C
     {
     {
-        if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
+        if (!$this->_configuracion['links']) {
             $this->_imagen->setHabilitada(false);
         }
         if ($this->verifSeccionSeleccionada($link_sel)) {
             $this->_imagen->setHabilitada(false);
         }
         if ($this->verifSeccionSeleccionada($link_sel)) {
@@ -157,16 +157,16 @@ class Seccion extends Pagina {
      * @return void
      * @access private
      */
      * @return void
      * @access private
      */
-    function _cargarHijos($hijos)// ~X2C
+    function _cargarHijos($hijos) // ~X2C
     {
         if ($this->_tipoMenu == 'vertical'){
     {
         if ($this->_tipoMenu == 'vertical'){
-            $tmp = new MenuVertical($this->_configuracion);
+            $tmp = new MECON_Marco_MenuVertical($this->_configuracion);
         }
         elseif ($this->_tipoMenu == 'horizontal') {
         }
         elseif ($this->_tipoMenu == 'horizontal') {
-            $tmp = new MenuHorizontal($this->_configuracion);
+            $tmp = new MECON_Marco_MenuHorizontal($this->_configuracion);
         }
         else {
         }
         else {
-            $tmp = new MenuOculto($this->_configuracion);
+            $tmp = new MECON_Marco_MenuOculto($this->_configuracion);
         }
         foreach ($hijos as $hijo) {
             $tmp->agregarComponente($hijo);
         }
         foreach ($hijos as $hijo) {
             $tmp->agregarComponente($hijo);
@@ -182,7 +182,7 @@ class Seccion extends Pagina {
      * @return void
      * @access private
      */
      * @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;
     {
         $file_cache = strtr($this->_configuracion['directorios']['root'],'/','_');
         $tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache;
@@ -207,7 +207,7 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0.
      * @return int
      * @access public
      */
      * @return int
      * @access public
      */
-    function verifSeccionSeleccionada($link_sel)// ~X2C
+    function verifSeccionSeleccionada($link_sel) // ~X2C
     {
         $tmp = $this->_desSerializarArraySecciones();
         $retorno = 0;
     {
         $tmp = $this->_desSerializarArraySecciones();
         $retorno = 0;
@@ -232,11 +232,11 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0.
      * @return string
      * @access public
      */
      * @return string
      * @access public
      */
-    function toHtmlVertical($link_sel, $ultimo = false)// ~X2C
+    function toHtmlVertical($link_sel, $ultimo = false) // ~X2C
     {
         $style = "text-decoration:none";
         
     {
         $style = "text-decoration:none";
         
-        if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
+        if (!$this->_configuracion['links']) {
             $link_start = '';
             $link_end   = '';
         }
             $link_start = '';
             $link_end   = '';
         }
@@ -268,6 +268,6 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0.
     }
     // -X2C
 
     }
     // -X2C
 
-} // -X2C Class :Seccion
+} // -X2C Class :MECON_Marco_Seccion
 
 
-?>
+?>
\ No newline at end of file