]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/Seccion.php
- Cirugia mayor en Marco. No varia nada de la interfaz salvo que ahora se llama MECON...
[mecon/meconlib.git] / lib / MECON / Marco / Seccion.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: Mon Apr 14 16:23:22 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 // +X2C includes
28 require_once 'MECON/Marco/Pagina.php';
29 // ~X2C
30
31 //Require Agregados por MMARRE, no pasan por el xmi2code
32 require_once 'MECON/Marco/ImagenAnimada.php';
33 require_once 'MECON/Marco/Menu.php';
34 require_once 'MECON/Marco/MenuHorizontal.php';
35 require_once 'MECON/Marco/MenuVertical.php';
36 require_once 'MECON/Marco/MenuOculto.php';
37
38 // +X2C Class 16 :MECON_Marco_Seccion
39 /**
40  * Clase seccion para el manejo de las secciones
41  *
42  * @package MECON_Marco
43  * @access public
44  */
45 class MECON_Marco_Seccion extends MECON_Marco_Pagina {
46     /**
47      * Nombre de la seccion.
48      *
49      * @var    string $nombre
50      * @access private
51      */
52     var $_nombre;
53
54     /**
55      * Este es el nombre de la imagen
56      *
57      * @var    Imagen $imagen
58      * @access private
59      */
60     var $_imagen;
61
62     /**
63      * Hijos (menu) de la seccion.
64      *
65      * @var    Menu $hijos
66      * @access private
67      */
68     var $_hijos;
69
70     /**
71      * Valor string del tipo de menu de la seccion
72      *
73      * @var    string $tipoMenu
74      * @access private
75      */
76     var $_tipoMenu;
77
78     /**
79      * Array con la configuracion del sistema
80      *
81      * @var    array $configuracion
82      * @access private
83      */
84     var $_configuracion;
85
86     /**
87      * @var    string $menuHtml
88      * @access private
89      */
90     var $_menuHtml;
91
92     // ~X2C
93
94     // +X2C Operation 63
95     /**
96      * Constructor. Recibe como parametro el nombre de la seccion
97      *
98      * @param  array $seccion Array con la informacion de la seccion
99      * @param  array $configuracion Array con la configuracion del sistema
100      *
101      * @return void
102      * @access public
103      */
104     function MECON_Marco_Seccion($seccion, $configuracion) // ~X2C
105     {
106         $this->_nombre   = @strval($seccion['nombre']);
107         $imgComun        = @strval($seccion['imagenComun']);
108         $imgMouseOn      = @strval($seccion['imagenMouseOn']);
109         $imgSelect       = @strval($seccion['imagenSelect']);
110         $this->_tipoMenu = @strval($seccion['tipoMenu']);
111         if (@$seccion['link']) {
112             parent::MECON_Marco_Pagina($seccion['link']);
113         }        
114         $this->_imagen = new MECON_Marco_ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
115         $configuracion['directorios']['imagenes'], $this->_nombre,
116         $configuracion['directorios']['root'].'/'.$this->_link);
117         if (!is_null($configuracion)) {
118             $this->_configuracion = $configuracion;
119         }
120         if (array_key_exists('hijos', $seccion)) {
121             $this->_cargarHijos($seccion['hijos']);
122         }
123     }
124     // -X2C
125
126     // +X2C Operation 64
127     /**
128      * Funcion que devuelve un string con el html a imprimir por pantalla.
129      *
130      * @param  string $link_sel Indica la pagina a la cual se quiere acceder.
131      *
132      * @return string
133      * @access public
134      */
135     function toHtml($link_sel) // ~X2C
136     {
137         if (!$this->_configuracion['links']) {
138             $this->_imagen->setHabilitada(false);
139         }
140         if ($this->verifSeccionSeleccionada($link_sel)) {
141             $this->_imagen->setSeleccionada(true);
142         }
143         return $this->_imagen->toHtml();
144     }
145     // -X2C
146
147     // +X2C Operation 84
148     /**
149      * Carga el array con los objetos hijos de la seccion
150      *
151      * @param  array $hijos Array con los datos de los hijos de la seccion
152      *
153      * @return void
154      * @access private
155      */
156     function _cargarHijos($hijos) // ~X2C
157     {
158         if ($this->_tipoMenu == 'vertical'){
159             $tmp = new MECON_Marco_MenuVertical($this->_configuracion);
160         }
161         elseif ($this->_tipoMenu == 'horizontal') {
162             $tmp = new MECON_Marco_MenuHorizontal($this->_configuracion);
163         }
164         else {
165             $tmp = new MECON_Marco_MenuOculto($this->_configuracion);
166         }
167         foreach ($hijos as $hijo) {
168             $tmp->agregarComponente($hijo);
169         }
170         $this->_hijos = $tmp;
171     }
172     // -X2C
173
174     // +X2C Operation 127
175     /**
176      * Funcion que se encarga de desserializar el array asociativo paginas-secciones.
177      *
178      * @return void
179      * @access private
180      */
181     function _desSerializarArraySecciones() // ~X2C
182     {
183         $file_cache = strtr($this->_configuracion['directorios']['root'],'/','_');
184         $tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache;
185         
186         if (file_exists($tmp)) {
187             $s = implode("", @file($tmp));
188             return unserialize($s);
189         }
190         else {
191             return null;
192         }
193     }
194     // -X2C
195
196     // +X2C Operation 129
197     /**
198      * 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.
199 Devuelve 1 si pertenece a la seccion, en caso contrario 0.
200      *
201      * @param  string $link_sel Nombre de la pagina a la cual se quiere acceder.
202      *
203      * @return int
204      * @access public
205      */
206     function verifSeccionSeleccionada($link_sel) // ~X2C
207     {
208         $tmp = $this->_desSerializarArraySecciones();
209         $retorno = 0;
210         if (isset($tmp) && array_key_exists($this->_nombre,$tmp)) {
211             foreach ($tmp[$this->_nombre] as $t) {
212                 if ($link_sel == $t) {
213                     $retorno = 1;
214                 }
215             }
216         }
217         return $retorno;
218     }
219     // -X2C
220
221
222
223     // +X2C Operation 202
224     /**
225      * @param  string $link_sel Nombre de la seccion seleccionada
226      * @param  bool $ultimo Indica si es el ultimo componente del menu.....en caso de serlo, debe mostrar la imagen con codito
227      *
228      * @return string
229      * @access public
230      */
231     function toHtmlVertical($link_sel, $ultimo = false) // ~X2C
232     {
233         $style = "text-decoration:none";
234         
235         if (!$this->_configuracion['links']) {
236             $link_start = '';
237             $link_end   = '';
238         }
239         else {
240             $link_start = '<a href="'.$this->_configuracion['directorios']['root'].'/'.$this->_link.'" style="'.$style.'">';
241             $link_end   = '</a>';
242         }
243         
244         $sec = array ();
245         if ($this->verifSeccionSeleccionada($link_sel)) {
246             if ($ultimo) {
247                 $sec[] = $link_start.'<img src="/MECON/images/general_carp2_f3" border="0">'.$link_end;
248             }
249             else {
250                 $sec[] = $link_start.'<img src="/MECON/images/general_carp1_f3" border="0">'.$link_end;
251             }
252         }
253         else {
254             if ($ultimo) {
255                 $sec[] = $link_start.'<img src="/MECON/images/general_carp2_f2" border="0">'.$link_end;
256             }
257             else {
258                 $sec[] = $link_start.'<img src="/MECON/images/general_carp1_f2" border="0">'.$link_end;
259             }
260         }
261         
262         $sec[] = '<font face="Arial, Helvetica, sans-serif" size="1" color=""><b>'.$link_start.'&nbsp;&nbsp;'.$this->_nombre.$link_end.'</b></font>';
263         return $sec;
264     }
265     // -X2C
266
267 } // -X2C Class :MECON_Marco_Seccion
268
269 ?>