]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/Seccion.php
d4dd1f8498907f24ebf62ea227927b016179537f
[mecon/meconlib.git] / marco / php / 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 'Pagina.php';
32 // ~X2C
33
34 //Require Agregados por MMARRE, no pasan por el xmi2code
35 require_once 'ImagenAnimada.php';
36 require_once 'Menu.php';
37 require_once 'MenuHorizontal.php';
38 require_once 'MenuVertical.php';
39 require_once '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      *
54      * @access private
55      */
56     var $_nombre;
57
58     /**
59      * Este es el nombre de la imagen
60      *
61      * @var    Imagen $imagen
62      *
63      * @access private
64      */
65     var $_imagen;
66
67     /**
68      * Hijos (menu) de la seccion.
69      *
70      * @var    Menu $hijos
71      *
72      * @access private
73      */
74     var $_hijos;
75
76     /**
77      * Valor string del tipo de menu de la seccion
78      *
79      * @var    string $tipoMenu
80      *
81      * @access private
82      */
83     var $_tipoMenu;
84
85     /**
86      * Lugar en donde esta el sistema.
87      *
88      * @var    string $directorio
89      *
90      * @access private
91      */
92     var $_directorio;
93
94     /**
95      *
96      * @var    string $menuHtml
97      *
98      * @access private
99      */
100     var $_menuHtml;
101
102     // ~X2C
103
104     // +X2C Operation 63
105     /**
106      * Constructor. Recibe como parametro el nombre de la seccion
107      *
108      * @param  array $seccion Array con la informacion de la seccion
109      * @param  string $directorio Dir en donde esta el sistema
110      *
111      * @return void
112      *
113      * @access public
114      * @static
115      */
116     function Seccion($seccion, $directorio) // ~X2C
117     {
118         if (array_key_exists('nombre',$seccion)) { 
119             $this->_nombre   = $seccion['nombre'];
120         }
121         if (array_key_exists('imagenComun',$seccion)) {
122             $this->_imagen   = new ImagenAnimada($seccion['imagenComun']);
123         }
124         if (array_key_exists('tipoMenu',$seccion)) {
125             $this->_tipoMenu = $seccion['tipoMenu'];
126         }
127         if (!is_null($directorio)) {
128             $this->_directorio = $directorio;
129         }
130         if (array_key_exists('link',$seccion)) {
131             parent::Pagina($seccion['link']);
132         }        
133         if (array_key_exists('hijos',$seccion)) {
134             $this->_cargarHijos($seccion['hijos']);
135         }
136         elseif (array_key_exists('subhijos',$seccion)) {
137             //$this->_cargarSubHijos($seccion['subhijos']);
138         }
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      *
151      * @access public
152      */
153     function toHtml($link_sel) // ~X2C
154     {
155         if ($this->verifSeccionSeleccionada($link_sel)) {
156             $sec    = "<a href=\"".$this->_link."\"><img name=\"".$this->_nombre."\" src=\"images/".$this->_imagen->_imgSelect."\" border=\"0\" alt=\"".$this->_imagen->_alt."\"></a>";
157             
158             return $sec;
159         }
160         else {
161             $sec = "<a href=\"".$this->_link."\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_displayStatusMsg('".$this->_nombre."'); MM_swapImage('".$this->_nombre."','','images/".$this->_imagen->_imgMouseOn."',1); return document.MM_returnValue\" MM_swapImage('".$this->_nombre."','','images/".$this->_imagen->_imgMouseOn."',1)><img name=\"".$this->_nombre."\" src=\"images/".$this->_imagen->_imgComun."\" border=\"0\" alt=\"".$this->_imagen->_alt."\"></a>";
162
163             return $sec;
164         }
165         
166         return $tmp;
167     }
168     // -X2C
169
170     // +X2C Operation 84
171     /**
172      * Carga el array con los objetos hijos de la seccion
173      *
174      * @param  array $hijos Array con los datos de los hijos de la seccion
175      *
176      * @return void
177      *
178      * @access private
179      */
180     function _cargarHijos($hijos) // ~X2C
181     {
182         if ($this->_tipoMenu == 'vertical'){
183             $tmp = new MenuVertical($this->_directorio);
184         }
185         elseif ($this->_tipoMenu == 'horizontal') {
186             $tmp = new MenuHorizontal($this->_directorio);
187         }
188         else {
189             $tmp = new MenuOculto($this->_directorio);
190         }
191         foreach ($hijos as $hijo) {
192             $tmp->agregarComponente($hijo);
193         }
194         $this->_hijos = $tmp;
195     }
196     // -X2C
197
198     // +X2C Operation 127
199     /**
200      * Funcion que se encarga de desserializar el array asociativo paginas-secciones.
201      *
202      * @return void
203      *
204      * @access private
205      */
206     function _desSerializarArraySecciones() // ~X2C
207     {
208         $tmp = PRE_DIR.$this->_directorio.POST_DIR.ARRAYSECCIONES_SERIALIZADO;
209         $s = implode("", @file($tmp));
210         return unserialize($s);
211     }
212     // -X2C
213
214     // +X2C Operation 129
215     /**
216      * 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.
217 Devuelve 1 si pertenece a la seccion, en caso contrario 0.
218      *
219      * @param  string $link_sel Nombre de la pagina a la cual se quiere acceder.
220      *
221      * @return int
222      *
223      * @access public
224      */
225     function verifSeccionSeleccionada($link_sel) // ~X2C
226     {
227         $tmp = $this->_desSerializarArraySecciones();
228         $retorno = 0;
229         if (isset($tmp) && array_key_exists($this->_nombre,$tmp)) {
230             foreach ($tmp[$this->_nombre] as $t) {
231                 if ($link_sel == $t) {
232                     $retorno = 1;
233                 }
234             }
235         }
236         return $retorno;
237     }
238     // -X2C
239
240
241     // +X2C Operation 150
242     /**
243      * Carga el array con los objetos subhijos de la seccion
244      *
245      * @param  array $subhijos Array con los nombres de los links que componen a este hijo
246      *
247      * @return void
248      *
249      * @access private
250      */
251     function _cargarSubHijos($subhijos) // ~X2C
252     {
253     }
254     // -X2C
255
256 } // -X2C Class :Seccion
257
258 ?>