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: Thu May 15 18:36:01 2003
22 Autor: Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'HTML/Table.php';
30 require_once 'MECON/Marco/MenuHorizontal.php';
33 // +X2C Class 193 :MenuPrincipal
35 * Clase que se encarga del manejo de los menues principales. Este menu es el de secciones general del sistema.
37 * @package MECON_Marco
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 array $configuracion Configuracion del sistema
58 function menuPrincipal($configuracion) // ~X2C
60 $this->_seccionSeleccionada = null;
61 parent::Menu($configuracion);
63 if (!is_null($configuracion['secciones'] || $configuracion['secciones'] == '')) {
64 $this->_armarArraySecciones($this->_obtenerConfSecciones());
65 //Serializo el array asociativo de paginas-secciones
66 // if (!file_exists($this->_configuracion['directorios']['root'].'/'.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;
105 //Agrego el contenido de la pagina
106 if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
107 $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['espacios'], $body['menuVertical']);
108 $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
109 $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
112 $row = array ('<font face="Arial, Helvetica, sans-serif" size="3" color="#FFFFFF"><b>'.$this->_seccionSeleccionada->_nombre.'</b></font>');
113 $this->_tabla->addRow($row,'align="left" bgcolor="#336699" colspan="'.$colspan.'"');
115 //Agrego si corresponde el espacio al inicio
116 if ($body['espacios']) {
117 $espacio = ' <BR>';
124 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE
127 if ($body['menuVertical']) {
128 if (is_object($body['menuVertical'])) {
129 if (method_exists($body['menuVertical'],'toHtml')) {
130 $tmp.=$body['menuVertical']->toHtml();
132 trigger_error('El metodo no existe!', E_USER_WARNING);
135 $tmp.=$body['menuVertical'];
140 if (is_array($body['body'])) {
143 foreach ($body['body'] as $bod) {
144 if (is_object($bod)) {
145 if (method_exists($bod,'toHtml')) {
146 $tmp.=$bod->toHtml();
148 trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
157 $row[] = $body['body'];
160 if ($body['menuVertical']) {
161 $tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
162 $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
163 $tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
164 $contenido[] = $tabla;
169 $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
172 $row = array ($body['pie']);
173 $this->_tabla->addRow($row,'align="center" bgcolor="#CCCCCC" colspan="'.$colspan.'"');
177 } // -X2C Class :MenuPrincipal