1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3 Ministerio de EconomÃa
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
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)
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.
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 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
28 //Require Agregados por MMARRE, no pasan por el xmi2code
29 require_once 'MECON/Marco/ImagenAnimada.php';
30 require_once 'MECON/Marco/Menu.php';
31 require_once 'MECON/Marco/MenuHorizontal.php';
32 require_once 'MECON/Marco/MenuVertical.php';
33 require_once 'MECON/Marco/MenuOculto.php';
35 // +X2C Class 16 :MECON_Marco_Seccion
37 * Clase para el manejo de las secciones
39 * @package MECON_Marco
42 class MECON_Marco_Seccion {
44 * Nombre de la seccion.
52 * Este es el nombre de la imagen
60 * Hijos (menu) de la seccion.
68 * Valor string del tipo de menu de la seccion
70 * @var string $tipoMenu
76 * Array con la configuracion del sistema
78 * @var array $configuracion
81 var $_configuracion = array();
84 * Contiene el html del menu de la seccion
86 * @var string $menuHtml
92 * Nombre del archivo pagina.
103 * Recibe como parametro el nombre de la seccion
105 * @param array $seccion Array con la informacion de la seccion
106 * @param array $configuracion Array con la configuracion del sistema
111 function MECON_Marco_Seccion($seccion, $configuracion) // ~X2C
113 $this->_nombre = @strval($seccion['nombre']);
114 $imgComun = @strval($seccion['imagenComun']);
115 $imgMouseOn = @strval($seccion['imagenMouseOn']);
116 $imgSelect = @strval($seccion['imagenSelect']);
117 $this->_tipoMenu = @strval($seccion['tipoMenu']);
118 $this->_link = @strval($seccion['link']);
120 $this->_imagen = new MECON_Marco_ImagenAnimada( $imgComun,
123 $configuracion['directorios']['imagenes'],
125 $configuracion['directorios']['root'].'/'.
127 if (!is_null($configuracion)) {
128 $this->_configuracion = $configuracion;
130 if (array_key_exists('hijos', $seccion)) {
131 $this->_cargarHijos($seccion['hijos']);
138 * Funcion que devuelve un string con el html a imprimir por pantalla.
140 * @param string $link_sel Indica la pagina a la cual se quiere acceder.
145 function toHtml($link_sel) // ~X2C
147 if (!$this->_configuracion['links']) {
148 $this->_imagen->setHabilitada(false);
150 if ($this->verifSeccionSeleccionada($link_sel)) {
151 $this->_imagen->setSeleccionada(true);
153 return $this->_imagen->toHtml();
159 * Carga el array con los objetos hijos de la seccion
161 * @param array $hijos Array con los datos de los hijos de la seccion
166 function _cargarHijos($hijos) // ~X2C
168 if ($this->_tipoMenu == 'vertical'){
169 $tmp = new MECON_Marco_MenuVertical($this->_configuracion);
171 elseif ($this->_tipoMenu == 'horizontal') {
172 $tmp = new MECON_Marco_MenuHorizontal($this->_configuracion);
175 $tmp = new MECON_Marco_MenuOculto($this->_configuracion);
177 foreach ($hijos as $hijo) {
178 $hijo['nombre'] = $this->_nombre.'-'.$hijo['nombre'];
179 $tmp->agregarComponente($hijo);
181 $this->_hijos = $tmp;
185 // +X2C Operation 127
187 * Funcion que se encarga de desserializar el array asociativo paginas-secciones.
192 function _desSerializarArraySecciones() // ~X2C
194 $file_cache = strtr($this->_configuracion['directorios']['root'],'/','_');
195 $tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache;
197 if (file_exists($tmp)) {
198 $s = implode("", @file($tmp));
199 return unserialize($s);
207 // +X2C Operation 129
209 * 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.
210 Devuelve 1 si pertenece a la seccion, en caso contrario 0.
212 * @param string $link_sel Nombre de la pagina a la cual se quiere acceder.
217 function verifSeccionSeleccionada($link_sel) // ~X2C
219 $tmp = $this->_desSerializarArraySecciones();
221 if (isset($tmp) && array_key_exists($this->_nombre,$tmp)) {
222 foreach ($tmp[$this->_nombre] as $t) {
223 if (rtrim($link_sel, '/') == rtrim($t, '/')) {
234 // +X2C Operation 202
236 * Devuelve el html a mostrar en pantalla
238 * @param string $link_sel Nombre de la seccion seleccionada
239 * @param bool $ultimo Indica si es el ultimo componente del menu.....en caso de serlo, debe mostrar la imagen con codito
244 function toHtmlVertical($link_sel, $ultimo = false) // ~X2C
246 $style = "text-decoration:none";
248 if (!$this->_configuracion['links']) {
253 $link_start = '<a href="'.$this->_configuracion['directorios']['root'].'/'.$this->_link.'" style="'.$style.'">';
258 if ($this->verifSeccionSeleccionada($link_sel)) {
259 $sec[] = $link_start.'<img src="/MECON/images/general_carpeta_f3" border="0">'.$link_end;
262 $sec[] = $link_start.'<img src="/MECON/images/general_carpeta" border="0">'.$link_end;
265 $nombre = strstr($this->_nombre, '-');
266 $nombre = substr($nombre, 1);
267 $sec[] = '<font face="Arial, Helvetica, sans-serif" size="1"><p> '.$nombre.'</p></font>';
272 } // -X2C Class :MECON_Marco_Seccion