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
48 var $_configuracion = array();
51 * Array de array con los componentes del menu
53 * @var array $componentes
56 var $_componentes = array();
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
80 var $_secciones = array();
83 * @var string $componentesVertical
86 var $_componentesVertical = array();
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->_tabla = new HTML_Table('width=760
107 $this->_configuracion = $configuracion;
113 * Funcion que se encarga de generar el archivo que despues sera utilizado con la funcion EVAL.
118 function _generarArchivo() // ~X2C
120 $s = serialize($this);
121 $fp = fopen($this->_configuracion['directorios']['root'].'/'.MENU_SERIALIZADO,'w');
129 * Funcion que se encarga de obtener el archivo con los datos del objeto para ser utilizado con la funcion EVAL.
131 * @param string $directorio Nombre del directorio en donde se encuentra el sistema instalado
136 function _obtenerArchivo($directorio) // ~X2C
138 $s = implode("", @file($this->_configuracion['directorios']['root'].'/'.MENU_SERIALIZADO));
139 return unserialize($s);
146 * Funcion que obtiene el arrayde configuracion de secciones.
151 function _obtenerConfSecciones() // ~X2C
153 return $this->_configuracion['secciones'];
159 * Funcion que arma a partir de la configuracion de las secciones el array con los objetos seccion.
161 * @param array $confSec Array con la informacion de las secciones
166 function _armarArraySecciones($confSec) // ~X2C
168 $linksel = $_SERVER['PHP_SELF'];
170 $cuenta = count ($confSec);
172 foreach ($confSec as $sec) {
173 $tmp = new MECON_Marco_Seccion ($sec, $this->_configuracion);
174 array_push($this->_componentes,$tmp->toHtml($linksel));
178 array_push($this->_componentesVertical, $tmp->toHtmlVertical($linksel,$ultimo));
180 array_push($this->_secciones,$tmp);
186 // +X2C Operation 126
188 * 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.
193 function _serializarArraySecciones() // ~X2C
195 $secciones = $this->_configuracion['secciones'];
199 $PATH = $this->_configuracion['directorios']['root'];
201 foreach ($secciones as $sec) { //Chequeo las secciones
202 $tmp[$sec['nombre']] = array ($PATH.'/'.$sec['link']);
203 if (array_key_exists('hijos',$sec)) {
204 foreach ($sec['hijos'] as $hijo) { //Chequeo las subsecciones
205 array_push($tmp[$sec['nombre']],$PATH.'/'.$hijo['link']);
206 $tmp2[$hijo['nombre']] = array ($PATH.'/'.$hijo['link']);
207 if (array_key_exists('subhijos',$hijo)) {
208 foreach ($hijo['subhijos'] as $subhijo) { //Chequeo las subsubsecciones
209 array_push($tmp[$sec['nombre']],$PATH.'/'.$subhijo);
210 array_push($tmp2[$hijo['nombre']],$PATH.'/'.$subhijo);
216 $tmp = array_merge($tmp,$tmp2);
217 $s = serialize($tmp);
218 $file_cache = strtr( $this->_configuracion['directorios']['root'], '/','_');
219 $fp = fopen($this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache,'w');
226 // +X2C Operation 134
228 * Funcion que se encarga de agregar componentes al array
230 * @param array $componente Datos del componente de menu a agregar
235 function agregarComponente($componente) // ~X2C
237 array_push($this->_componentes,$componente);
242 // +X2C Operation 143
244 * Funcion que se encarga de devolver lo que se debe mostrar en pantalla
249 function toHtml() // ~X2C
251 return $this->_tabla->toHtml();
256 // +X2C Operation 151
258 * Devuelve el html del menu que hay que mostrar en pantalla
263 function menuToHtml() // ~X2C
265 return $this->_menuHtml;
269 } // -X2C Class :MECON_Marco_Menu