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 :MECON_Marco_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 MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
42 * Contiene el objeto seccion que se encuentra seleccionada. Se utiliza para mostrar el menu.
44 * @var Seccion $seccionSeleccionada
47 var $_seccionSeleccionada = null;
53 * @param array $configuracion Configuracion del sistema
58 function MECON_Marco_MenuPrincipal($configuracion) // ~X2C
60 parent::MECON_Marco_Menu($configuracion);
62 if (!is_null($configuracion['secciones'] || $configuracion['secciones'] == '')) {
63 $this->_armarArraySecciones($this->_obtenerConfSecciones());
64 //Serializo el array asociativo de paginas-secciones
65 // if (!file_exists($this->_configuracion['directorios']['root'].'/'.ARRAYSECCIONES_SERIALIZADO)) {
66 $this->_serializarArraySecciones();
76 * Funcion que se encarga de agregar el body a la seccion seleccionada
83 function addBody($body) // ~X2C
85 $colspan = count($this->_componentes);
87 //Agrego el copete {{{
88 $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes']);
89 $row[] = $copete->toHtml();
90 $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
93 //Agrego las secciones
94 $this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
95 $colcount = $this->_tabla->getColCount();
96 $width = 100 / $colcount;
98 for ($col=0; $col < $colcount; $col++) {
99 $this->_tabla->updateColAttributes($col,'width="'.$width.'%"');
102 foreach ($this->_secciones as $sec) {
103 if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
104 $this->_seccionSeleccionada = $sec;
107 //Agrego el contenido de la pagina
108 if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
109 $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['menuVertical']);
110 $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
111 $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
114 $row = array ('<font face="Arial, Helvetica, sans-serif" size="3" color="#FFFFFF"><b>'.$this->_seccionSeleccionada->_nombre.'</b></font>');
115 $this->_tabla->addRow($row,'align="left" bgcolor="#336699" colspan="'.$colspan.'"');
117 //Agrego si corresponde el espacio al inicio
118 if ($this->_configuracion['espacios']) {
119 $espacio = ' <BR>';
126 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE
129 if ($body['menuVertical']) {
130 if (is_object($body['menuVertical'])) {
131 if (method_exists($body['menuVertical'],'toHtml')) {
132 $tmp.=$body['menuVertical']->toHtml();
134 trigger_error('El metodo no existe!', E_USER_WARNING);
137 $tmp.=$body['menuVertical'];
142 if (is_array($body['body'])) {
145 foreach ($body['body'] as $bod) {
146 if (is_object($bod)) {
147 if (method_exists($bod,'toHtml')) {
148 $tmp.=$bod->toHtml();
150 trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
159 $row[] = $body['body'];
162 if ($body['menuVertical']) {
163 $tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
164 $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
165 $tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
166 $contenido[] = $tabla;
171 $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
177 } // -X2C Class :MECON_Marco_MenuPrincipal