2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
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 // +----------------------------------------------------------------------+
27 require_once 'Seccion.php';
29 // +X2C Class 14 :Menu
31 * Clase para el manejo de los menues y secciones de los sistemas.
37 * Array de secciones. Contiene la informacion de las secciones del sistema.
39 * @var array(seccion) $secciones
46 * Nombre del directorio en donde se encuentra el sistema;.
48 * @var string $directorio
55 * Array con la configuracion de las secciones
57 * @var array $confSecciones
85 * Constructor. Recibe como parametro el directorio en donde se encuentra el sistema.
87 * @param string $directorio Nombre del directorio en donde se encuentra el sistema.
88 * @param string $nombre Nombre del menu
89 * @param string $link Link del menu.
95 function Menu($directorio, $nombre = null, $link = null) // ~X2C
97 $this->_directorio = $directorio;
98 $this->_obtenerConfSecciones();
99 $this->_armarArraySecciones();
101 if (!is_null($nombre)) {
102 $this->_nombre = $nombre;
104 if (!is_null($link)) {
105 $this->_link = $link;
112 * Funcion que se encarga de generar el archivo que despues sera utilizado con la funcion EVAL.
118 function _generarArchivo() // ~X2C
120 trigger_error('Not implemented!', E_USER_WARNING);
126 * Funcion que se encarga de obtener el archivo con los datos del objeto para ser utilizado con la funcion EVAL.
132 function _obtenerArchivo() // ~X2C
134 trigger_error('Not implemented!', E_USER_WARNING);
140 * Funcion que devuelve un string en html con lo que hay que imprimir en pantalla.
146 function toHtml() // ~X2C
148 trigger_error('Not implemented!', E_USER_WARNING);
154 * Funcion que se encarga de obtener y generar el array de configuracion de secciones.
160 function _obtenerConfSecciones() // ~X2C
162 $this->_confSecciones = include 'confSecciones.php';
168 * Funcion que arma a partir de la configuracion de las secciones el array con los objetos seccion.
174 function _armarArraySecciones() // ~X2C
176 $this->_secciones = array ();
177 foreach ($this->_confSecciones as $sec) {
178 $tmp = new Seccion ($sec);
179 array_push($this->_secciones,$tmp);
184 } // -X2C Class :Menu