1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4:
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';
28 require_once 'MECON/HTML/Image.php';
31 require_once 'MECON/Marco/MenuHorizontal.php';
34 // +X2C Class 193 :MECON_Marco_MenuPrincipal
36 * Clase que se encarga del manejo del menu principal. Este menu es el de secciones general del sistema.
38 * @package MECON_Marco
41 class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
43 * Contiene el objeto seccion que se encuentra seleccionada. Se utiliza para mostrar el menu.
45 * @var Seccion $seccionSeleccionada
48 var $_seccionSeleccionada = null;
54 * @param array $configuracion Configuracion del sistema
59 function MECON_Marco_MenuPrincipal($configuracion) // ~X2C
61 parent::MECON_Marco_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 //Agrego el copete {{{
89 $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes'], @$this->_configuracion['ayuda']);
90 $row[] = $copete->toHtml();
91 $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
94 //Agrego las secciones
95 $TABLAM = new HTML_Table('width=760
100 background="/MECON/images/general_fondo_gris.gif"');
101 $TABLAM->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
102 $width = intval (100 / $colspan);
104 for ($col=0; $col < $colspan; $col++) {
105 $TABLAM->updateCellAttributes(0,$col,'width="'.$width.'%"');
107 $this->_tabla->addRow(array($TABLAM));
109 $imagen = new MECON_HTML_Image('/MECON/images/general_linea.gif');
110 $i = $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
111 $this->_tabla->updateRowAttributes($i, 'height="1"');
113 foreach ($this->_secciones as $sec) {
114 if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
115 $this->_seccionSeleccionada = $sec;
118 //Agrego el contenido de la pagina
119 if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
120 $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['menuVertical']);
121 $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
122 $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
125 if ($this->_seccionSeleccionada) {
126 $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre.$this->_configuracion['subtitulo']));
127 $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF"');
128 $imagen = new MECON_HTML_Image('/MECON/images/general_linea2.gif', 'boder="0" align="center"');
129 $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
132 //Agrego si corresponde el espacio al inicio
133 if ($this->_configuracion['espacios']) {
134 $espacio = ' <BR>';
141 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE
144 if ($body['menuVertical']) {
145 if (is_object($body['menuVertical'])) {
146 if (method_exists($body['menuVertical'],'toHtml')) {
147 $tmp.=$body['menuVertical']->toHtml();
149 trigger_error('El metodo no existe!', E_USER_WARNING);
152 $tmp.=$body['menuVertical'];
157 if (is_array($body['body'])) {
160 foreach ($body['body'] as $bod) {
161 if (is_object($bod)) {
162 if (method_exists($bod,'toHtml')) {
163 $tmp.=$bod->toHtml();
165 trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
174 $row[] = $body['body'];
177 if ($body['menuVertical']) {
178 $tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
179 $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF" valign="top"');
180 $tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
181 $contenido[] = $tabla;
186 $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" valign="top"');
191 } // -X2C Class :MECON_Marco_MenuPrincipal