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';
28 require_once 'MECON/HTML/Image.php';
29 require_once 'MECON/Marco/MenuHorizontal.php';
33 * Clase que se encarga del manejo del menu principal. Este menu es el de secciones general del sistema.
37 class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
39 * Contiene el objeto seccion que se encuentra seleccionada. Se utiliza para mostrar el menu.
41 * @var Seccion $seccionSeleccionada
44 var $_seccionSeleccionada = null;
47 * @param array $configuracion Configuracion del sistema
52 function MECON_Marco_MenuPrincipal($configuracion)
54 parent::MECON_Marco_Menu($configuracion);
56 if (!is_null($configuracion['secciones'] || $configuracion['secciones'] == '')) {
57 $this->_armarArraySecciones($this->_obtenerConfSecciones());
58 //Serializo el array asociativo de paginas-secciones
59 // if (!file_exists($this->_configuracion['directorios']['root'].'/'.ARRAYSECCIONES_SERIALIZADO)) {
60 $this->_serializarArraySecciones();
67 * Funcion que se encarga de agregar el body a la seccion seleccionada
74 function addBody($body)
76 //ARMO EL MENU PRINCIPAL
77 $colspan = count($this->_componentes);
79 $copete =& new MECON_Marco_Copete
80 (@$this->_configuracion['directorios']['imagenes'],
81 @$this->_configuracion['ayuda'],
82 @$this->_configuracion['titulo_sistema']
84 $tmp = $this->_tabla->addRow(array($copete->toHtml()),
85 'align="center" bgcolor="#FFFFFF"');
86 $this->_tabla->updateCellAttributes($tmp, 0,
87 'colspan="'. $colspan .'"');
88 //Agrego las secciones
89 $tmp = $this->_tabla->addRow($this->_componentes,
90 'align="center" bgcolor="#CCCCCC"');
91 $width = intval (100 / $colspan);
92 for ($col=0; $col < $colspan; $col++) {
93 $this->_tabla->updateCellAttributes($tmp, $col,
94 'width="'.$width.'%"');
96 //Agrego la linea de separacion
97 $tmp = $this->_tabla->addRow(array(new MECON_HTML_Image(
98 '/MECON/images/general_linea.gif', str_repeat('=', 108)
99 )),'align="center" height="1"');
100 $this->_tabla->updateCellAttributes($tmp, 0, 'colspan="'.$colspan.'"');
102 //BUSCO LA SECCION SELECCIONADA
103 foreach ($this->_secciones as $sec) {
104 if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF']))
106 $this->_seccionSeleccionada = $sec;
107 break; //Salgo del foreach
111 //IMPORTANTE: ACA EMPIEZO A ACTUAR DIFERENTE SEGUN EL ESTILO DE MENU QUE
114 //VOY POR LAS SUBSECCIONES, AGREGO EL MENU SI CORRESPONDE
115 if (isset($this->_seccionSeleccionada->_hijos)) {
116 $this->resultado[] = $this->_tabla;
117 $this->_seccionSeleccionada->_hijos->addBody(
119 $this->_seccionSeleccionada->_nombre,
120 $body['menuVertical']
122 foreach ($this->_seccionSeleccionada->_hijos->resultado AS $res) {
123 $this->resultado[] = $res;
127 //NO HAY MENUES DE MARCO
128 //Agrego el encabezado
129 if ($this->_seccionSeleccionada) {
130 $this->_tabla->addRow(
132 $this->_armarEncabezado($this->_seccionSeleccionada->_nombre.
133 $this->_configuracion['subtitulo'])
134 ),'align="left" bgcolor="#FFFFFF" colspan="'.
136 $this->_tabla->addRow(array(
137 new MECON_HTML_Image('/MECON/images/general_linea2.gif',
138 str_repeat('-', 108))),
139 'border="0" align="center" colspan="'. $colspan .'"');
141 $this->resultado[] = $this->_tabla;
143 //Si hay un menu vertical lo tengo en cuenta, sino tiro el contenido
145 if ($body['menuVertical']) {
146 $MENUVERTICAL = new HTML_Table ('width="760" align="left"');
148 if (is_array($body['body'])) {
149 if ($this->_configuracion['espacios']) {
150 $cuerpo.= ' <BR>';
152 foreach ($body['body'] as $bod) {
153 if (is_object($bod)) {
154 if (method_exists($bod,'toHtml')) {
155 $cuerpo.= $bod->toHtml();
158 trigger_error('El metodo no existe! - '.
159 get_class($bod).'::toHtml()',
169 $cuerpo = $body['body'];
171 $MENUVERTICAL->addRow(array($body['menuVertical'], $cuerpo),
173 $MENUVERTICAL->updateColAttributes(0, 'width="10%"');
174 $this->resultado[] = $MENUVERTICAL;
177 //Agrego si corresponde el espacio al inicio
178 if ($this->_configuracion['espacios']) {
179 $this->resultado[] = ' <BR>';
181 $this->resultado = array_merge($this->resultado, $body['body']);