]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/Seccion.php
f8bd7fba43244f8808d5d1af3589b067be6a4bea
[mecon/meconlib.git] / lib / MECON / Marco / Seccion.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: Mon Apr 14 16:23:22 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 #require_once 'PEAR.php';
28
29
30 // +X2C includes
31 require_once 'MECON/Marco/Pagina.php';
32 // ~X2C
33
34 //Require Agregados por MMARRE, no pasan por el xmi2code
35 require_once 'MECON/Marco/ImagenAnimada.php';
36 require_once 'MECON/Marco/Menu.php';
37 require_once 'MECON/Marco/MenuHorizontal.php';
38 require_once 'MECON/Marco/MenuVertical.php';
39 require_once 'MECON/Marco/MenuOculto.php';
40
41
42 // +X2C Class 16 :Seccion
43 /**
44  * Clase seccion para el manejo de las secciones
45  *
46  * @access public
47  */
48 class Seccion extends Pagina {
49     /**
50      * Nombre de la seccion.
51      *
52      * @var    string $nombre
53      * @access private
54      */
55     var $_nombre;
56
57     /**
58      * Este es el nombre de la imagen
59      *
60      * @var    Imagen $imagen
61      * @access private
62      */
63     var $_imagen;
64
65     /**
66      * Hijos (menu) de la seccion.
67      *
68      * @var    Menu $hijos
69      * @access private
70      */
71     var $_hijos;
72
73     /**
74      * Valor string del tipo de menu de la seccion
75      *
76      * @var    string $tipoMenu
77      * @access private
78      */
79     var $_tipoMenu;
80
81     /**
82      * Array con la configuracion del sistema
83      *
84      * @var    array $configuracion
85      * @access private
86      */
87     var $_configuracion;
88
89     /**
90      * @var    string $menuHtml
91      * @access private
92      */
93     var $_menuHtml;
94
95     // ~X2C
96
97     // +X2C Operation 63
98     /**
99      * Constructor. Recibe como parametro el nombre de la seccion
100      *
101      * @param  array $seccion Array con la informacion de la seccion
102      * @param  array $configuracion Array con la configuracion del sistema
103      *
104      * @return void
105      * @access public
106      * @static
107      */
108     function Seccion($seccion, $configuracion)// ~X2C
109     {
110         if (array_key_exists('nombre',$seccion)) { 
111             $this->_nombre = $seccion['nombre'];
112         }        
113         if (array_key_exists('imagenComun', $seccion))
114             $imgComun = $seccion['imagenComun'];
115         else 
116             unset($imgComun);
117         if (array_key_exists('imagenMouseOn', $seccion))
118             $imgMouseOn = $seccion['imagenMouseOn'];
119         else
120             unset($imgMouseOn);
121         if (array_key_exists('imagenSelect', $seccion))
122             $imgSelect = $seccion['imagenSelect'];
123         else
124             unset($imgSelect);
125         if (array_key_exists('link', $seccion)) {
126             parent::Pagina($seccion['link']);
127         }        
128         $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
129             $configuracion['directorios']['imagenes'], $this->_nombre, $configuracion['directorios']['root'].'/'.$this->_link);
130         
131         if (array_key_exists('tipoMenu', $seccion)) {
132             $this->_tipoMenu = $seccion['tipoMenu'];
133         }
134         if (!is_null($configuracion)) {
135             $this->_configuracion = $configuracion;
136         }
137         if (array_key_exists('hijos', $seccion)) {
138             $this->_cargarHijos($seccion['hijos']);
139         }
140     }
141     // -X2C
142
143     // +X2C Operation 64
144     /**
145      * Funcion que devuelve un string con el html a imprimir por pantalla.
146      *
147      * @param  string $link_sel Indica la pagina a la cual se quiere acceder.
148      *
149      * @return string
150      * @access public
151      */
152     function toHtml($link_sel)// ~X2C
153     {
154         if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
155             $this->_imagen->setHabilitada(false);
156         }
157         if ($this->verifSeccionSeleccionada($link_sel)) {
158             $this->_imagen->setSeleccionada(true);
159         }
160         return $this->_imagen->toHtml();
161     }
162     // -X2C
163
164     // +X2C Operation 84
165     /**
166      * Carga el array con los objetos hijos de la seccion
167      *
168      * @param  array $hijos Array con los datos de los hijos de la seccion
169      *
170      * @return void
171      * @access private
172      */
173     function _cargarHijos($hijos)// ~X2C
174     {
175         if ($this->_tipoMenu == 'vertical'){
176             $tmp = new MenuVertical($this->_configuracion);
177         }
178         elseif ($this->_tipoMenu == 'horizontal') {
179             $tmp = new MenuHorizontal($this->_configuracion);
180         }
181         else {
182             $tmp = new MenuOculto($this->_configuracion);
183         }
184         foreach ($hijos as $hijo) {
185             $tmp->agregarComponente($hijo);
186         }
187         $this->_hijos = $tmp;
188     }
189     // -X2C
190
191     // +X2C Operation 127
192     /**
193      * Funcion que se encarga de desserializar el array asociativo paginas-secciones.
194      *
195      * @return void
196      * @access private
197      */
198     function _desSerializarArraySecciones()// ~X2C
199     {
200         $file_cache = strtr($this->_configuracion['directorios']['root'],'/','_');
201         $tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache;
202         
203         if (file_exists($tmp)) {
204             $s = implode("", @file($tmp));
205             return unserialize($s);
206         }
207         else {
208             return null;
209         }
210     }
211     // -X2C
212
213     // +X2C Operation 129
214     /**
215      * 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.
216 Devuelve 1 si pertenece a la seccion, en caso contrario 0.
217      *
218      * @param  string $link_sel Nombre de la pagina a la cual se quiere acceder.
219      *
220      * @return int
221      * @access public
222      */
223     function verifSeccionSeleccionada($link_sel)// ~X2C
224     {
225         $tmp = $this->_desSerializarArraySecciones();
226         $retorno = 0;
227         if (isset($tmp) && array_key_exists($this->_nombre,$tmp)) {
228             foreach ($tmp[$this->_nombre] as $t) {
229                 if ($link_sel == $t) {
230                     $retorno = 1;
231                 }
232             }
233         }
234         return $retorno;
235     }
236     // -X2C
237
238
239
240     // +X2C Operation 202
241     /**
242      * @param  string $link_sel Nombre de la seccion seleccionada
243      * @param  bool $ultimo Indica si es el ultimo componente del menu.....en caso de serlo, debe mostrar la imagen con codito
244      *
245      * @return string
246      * @access public
247      */
248     function toHtmlVertical($link_sel, $ultimo = false)// ~X2C
249     {
250         $style = "text-decoration:none";
251         
252         if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
253             $link_start = '';
254             $link_end   = '';
255         }
256         else {
257             $link_start = '<a href="'.$this->_configuracion['directorios']['root'].'/'.$this->_link.'" style="'.$style.'">';
258             $link_end   = '</a>';
259         }
260         
261         $sec = array ();
262         if ($this->verifSeccionSeleccionada($link_sel)) {
263             if ($ultimo) {
264                 $sec[] = $link_start.'<img src="/MECON/images/general_carp2_f3" border="0">'.$link_end;
265             }
266             else {
267                 $sec[] = $link_start.'<img src="/MECON/images/general_carp1_f3" border="0">'.$link_end;
268             }
269         }
270         else {
271             if ($ultimo) {
272                 $sec[] = $link_start.'<img src="/MECON/images/general_carp2_f2" border="0">'.$link_end;
273             }
274             else {
275                 $sec[] = $link_start.'<img src="/MECON/images/general_carp1_f2" border="0">'.$link_end;
276             }
277         }
278         
279         $sec[] = '<font face="Arial, Helvetica, sans-serif" size="1" color=""><b>'.$link_start.'&nbsp;&nbsp;'.$this->_nombre.$link_end.'</b></font>';
280         return $sec;
281     }
282     // -X2C
283
284 } // -X2C Class :Seccion
285
286 ?>