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 -----------------------------------------------------------------------------*/
27 require_once 'MECON/Marco/Seccion.php';
28 require_once 'MECON/Marco/ImagenAnimada.php';
29 require_once 'HTML/Table.php';
31 define ('MENU_SERIALIZADO' , 'MenuSerializado');
32 define ('ARRAYSECCIONES_SERIALIZADO', 'ArraySeccionesSerializado');
34 // +X2C Class 14 :MECON_Marco_Menu
36 * Clase para el manejo de los menues y secciones de los sistemas.
38 * @package MECON_Marco
41 class MECON_Marco_Menu {
43 * Array con la configuracion de las secciones del sistema;.
45 * @var array $configuracion
51 * Array de array con los componentes del menu
53 * @var array $componentes
59 * Variable que contiene la tabla general de menues que se va a mostrar en pantalla
67 * Variable que contiene el titulo de la seccion seleccionada
75 * Array con los objetos seccion.
77 * @var array $secciones
83 * @var string $componentesVertical
86 var $_componentesVertical;
92 * Constructor. Recibe como parametro el directorio en donde se encuentra el sistema.
94 * @param array $configuracion Array con los datos de las secciones
99 function MECON_Marco_Menu($configuracion = null) // ~X2C
101 $this->_componentes = array (); //Inicializo vacio el array de componentes del menu
102 $this->_componentesVertical = array (); //Inicializo vacio el array de componentes del menu
103 $this->_secciones = array (); //Inicializo vacio el array de los objetos secciones
104 $this->_tabla = new HTML_Table('width=760 align="center" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0" border="0"');
105 $this->_configuracion = $configuracion;
111 * Funcion que se encarga de generar el archivo que despues sera utilizado con la funcion EVAL.
116 function _generarArchivo() // ~X2C
118 $s = serialize($this);
119 $fp = fopen($this->_configuracion['directorios']['root'].'/'.MENU_SERIALIZADO,'w');
127 * Funcion que se encarga de obtener el archivo con los datos del objeto para ser utilizado con la funcion EVAL.
129 * @param string $directorio Nombre del directorio en donde se encuentra el sistema instalado
134 function _obtenerArchivo($directorio) // ~X2C
136 $s = implode("", @file($this->_configuracion['directorios']['root'].'/'.MENU_SERIALIZADO));
137 return unserialize($s);
144 * Funcion que obtiene el arrayde configuracion de secciones.
149 function _obtenerConfSecciones() // ~X2C
151 return $this->_configuracion['secciones'];
157 * Funcion que arma a partir de la configuracion de las secciones el array con los objetos seccion.
159 * @param array $confSec Array con la informacion de las secciones
164 function _armarArraySecciones($confSec) // ~X2C
166 $linksel = $_SERVER['PHP_SELF'];
168 $cuenta = count ($confSec);
170 foreach ($confSec as $sec) {
171 $tmp = new MECON_Marco_Seccion ($sec, $this->_configuracion);
172 array_push($this->_componentes,$tmp->toHtml($linksel));
176 array_push($this->_componentesVertical, $tmp->toHtmlVertical($linksel,$ultimo));
178 array_push($this->_secciones,$tmp);
184 // +X2C Operation 126
186 * Funcion que se encarga de serializar el array asociativo paginas-secciones. Se utilizara en la clase seccion para identificar a que seccion pertenece la pagina a la cual se quiere acceder.
191 function _serializarArraySecciones() // ~X2C
193 $secciones = $this->_configuracion['secciones'];
197 $PATH = $this->_configuracion['directorios']['root'];
199 foreach ($secciones as $sec) { //Chequeo las secciones
200 $tmp[$sec['nombre']] = array ($PATH.'/'.$sec['link']);
201 if (array_key_exists('hijos',$sec)) {
202 foreach ($sec['hijos'] as $hijo) { //Chequeo las subsecciones
203 array_push($tmp[$sec['nombre']],$PATH.'/'.$hijo['link']);
204 $tmp2[$hijo['nombre']] = array ($PATH.'/'.$hijo['link']);
205 if (array_key_exists('subhijos',$hijo)) {
206 foreach ($hijo['subhijos'] as $subhijo) { //Chequeo las subsubsecciones
207 array_push($tmp[$sec['nombre']],$PATH.'/'.$subhijo);
208 array_push($tmp2[$hijo['nombre']],$PATH.'/'.$subhijo);
214 $tmp = array_merge($tmp,$tmp2);
215 $s = serialize($tmp);
216 $file_cache = strtr( $this->_configuracion['directorios']['root'], '/','_');
217 $fp = fopen($this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache,'w');
224 // +X2C Operation 134
226 * Funcion que se encarga de agregar componentes al array
228 * @param array $componente Datos del componente de menu a agregar
233 function agregarComponente($componente) // ~X2C
235 array_push($this->_componentes,$componente);
240 // +X2C Operation 143
242 * Funcion que se encarga de devolver lo que se debe mostrar en pantalla
247 function toHtml() // ~X2C
249 return $this->_tabla->toHtml();
254 // +X2C Operation 151
256 * Devuelve el html del menu que hay que mostrar en pantalla
261 function menuToHtml() // ~X2C
263 return $this->_menuHtml;
267 } // -X2C Class :MECON_Marco_Menu