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_once 'MECON/Marco/Pagina.php';
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';
38 // +X2C Class 16 :Seccion
40 * Clase seccion para el manejo de las secciones
42 * @package MECON_Marco
45 class Seccion extends Pagina {
47 * Nombre de la seccion.
55 * Este es el nombre de la imagen
63 * Hijos (menu) de la seccion.
71 * Valor string del tipo de menu de la seccion
73 * @var string $tipoMenu
79 * Array con la configuracion del sistema
81 * @var array $configuracion
87 * @var string $menuHtml
96 * Constructor. Recibe como parametro el nombre de la seccion
98 * @param array $seccion Array con la informacion de la seccion
99 * @param array $configuracion Array con la configuracion del sistema
105 function Seccion($seccion, $configuracion) // ~X2C
107 $this->_nombre = @strval($seccion['nombre']);
108 $imgComun = @strval($seccion['imagenComun']);
109 $imgMouseOn = @strval($seccion['imagenMouseOn']);
110 $imgSelect = @strval($seccion['imagenSelect']);
111 $this->_tipoMenu = @strval($seccion['tipoMenu']);
112 if (@$seccion['link']) {
113 parent::Pagina($seccion['link']);
115 $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
116 $configuracion['directorios']['imagenes'], $this->_nombre,
117 $configuracion['directorios']['root'].'/'.$this->_link);
118 if (!is_null($configuracion)) {
119 $this->_configuracion = $configuracion;
121 if (array_key_exists('hijos', $seccion)) {
122 $this->_cargarHijos($seccion['hijos']);
129 * Funcion que devuelve un string con el html a imprimir por pantalla.
131 * @param string $link_sel Indica la pagina a la cual se quiere acceder.
136 function toHtml($link_sel) // ~X2C
138 if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
139 $this->_imagen->setHabilitada(false);
141 if ($this->verifSeccionSeleccionada($link_sel)) {
142 $this->_imagen->setSeleccionada(true);
144 return $this->_imagen->toHtml();
150 * Carga el array con los objetos hijos de la seccion
152 * @param array $hijos Array con los datos de los hijos de la seccion
157 function _cargarHijos($hijos) // ~X2C
159 if ($this->_tipoMenu == 'vertical'){
160 $tmp = new MenuVertical($this->_configuracion);
162 elseif ($this->_tipoMenu == 'horizontal') {
163 $tmp = new MenuHorizontal($this->_configuracion);
166 $tmp = new MenuOculto($this->_configuracion);
168 foreach ($hijos as $hijo) {
169 $tmp->agregarComponente($hijo);
171 $this->_hijos = $tmp;
175 // +X2C Operation 127
177 * Funcion que se encarga de desserializar el array asociativo paginas-secciones.
182 function _desSerializarArraySecciones() // ~X2C
184 $file_cache = strtr($this->_configuracion['directorios']['root'],'/','_');
185 $tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache;
187 if (file_exists($tmp)) {
188 $s = implode("", @file($tmp));
189 return unserialize($s);
197 // +X2C Operation 129
199 * 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.
200 Devuelve 1 si pertenece a la seccion, en caso contrario 0.
202 * @param string $link_sel Nombre de la pagina a la cual se quiere acceder.
207 function verifSeccionSeleccionada($link_sel) // ~X2C
209 $tmp = $this->_desSerializarArraySecciones();
211 if (isset($tmp) && array_key_exists($this->_nombre,$tmp)) {
212 foreach ($tmp[$this->_nombre] as $t) {
213 if ($link_sel == $t) {
224 // +X2C Operation 202
226 * @param string $link_sel Nombre de la seccion seleccionada
227 * @param bool $ultimo Indica si es el ultimo componente del menu.....en caso de serlo, debe mostrar la imagen con codito
232 function toHtmlVertical($link_sel, $ultimo = false) // ~X2C
234 $style = "text-decoration:none";
236 if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
241 $link_start = '<a href="'.$this->_configuracion['directorios']['root'].'/'.$this->_link.'" style="'.$style.'">';
246 if ($this->verifSeccionSeleccionada($link_sel)) {
248 $sec[] = $link_start.'<img src="/MECON/images/general_carp2_f3" border="0">'.$link_end;
251 $sec[] = $link_start.'<img src="/MECON/images/general_carp1_f3" border="0">'.$link_end;
256 $sec[] = $link_start.'<img src="/MECON/images/general_carp2_f2" border="0">'.$link_end;
259 $sec[] = $link_start.'<img src="/MECON/images/general_carp1_f2" border="0">'.$link_end;
263 $sec[] = '<font face="Arial, Helvetica, sans-serif" size="1" color=""><b>'.$link_start.' '.$this->_nombre.$link_end.'</b></font>';
268 } // -X2C Class :Seccion