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: Thu May 15 18:36:01 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
27 #require_once 'PEAR.php';
31 require_once 'Marco/MenuHorizontal.php';
34 // +X2C Class 193 :MenuPrincipal
36 * Clase que se encarga del manejo de los menues principales. Este menu es el de secciones general del sistema.
40 class MenuPrincipal extends MenuHorizontal {
42 * Contiene el objeto seccion que se encuentra seleccionada. Se utiliza para mostrar el menu.
44 * @var Seccion $seccionSeleccionada
47 var $_seccionSeleccionada;
53 * @param string $directorio Path en donde se encuentra el sistema.
58 function menuPrincipal($directorio) // ~X2C
60 $this->_seccionSeleccionada = null;
61 parent::Menu($directorio);
63 if (!is_null($directorio)) {
64 $this->_armarArraySecciones($this->_obtenerConfSecciones());
65 //Serializo el array asociativo de paginas-secciones
66 // if (!file_exists(PRE_DIR.$directorio.POST_DIR.ARRAYSECCIONES_SERIALIZADO)) {
67 $this->_serializarArraySecciones();
77 * Funcion que se encarga de agregar el body a la seccion seleccionada
84 function addBody($body) // ~X2C
86 $colspan = count($this->_componentes);
88 $row = array ($body['copete']);
89 $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
91 //Agrego las secciones
92 $this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
93 $colcount = $this->_tabla->getColCount();
94 $width = 100 / $colcount;
96 for ($col=0; $col < $colcount; $col++) {
97 $this->_tabla->updateColAttributes($col,'width="'.$width.'%"');
100 foreach ($this->_secciones as $sec) {
101 if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
102 $this->_seccionSeleccionada = $sec;
106 //Agrego el contenido de la pagina
107 if (!is_null($this->_seccionSeleccionada)) {
108 $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre);
109 $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
112 $row = array ($body['body']);
114 $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
116 $row = array ($body['pie']);
117 $this->_tabla->addRow($row,'align="center" bgcolor="#CCCCCC" colspan="'.$colspan.'"');
122 } // -X2C Class :MenuPrincipal