]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuPrincipal.php
Se limpia un poco y se agregan metodos para seleccionar y obtener el valor seleccionado.
[mecon/meconlib.git] / lib / MECON / Marco / MenuPrincipal.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
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)
11 any later version.
12
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.
16  
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 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 require_once 'HTML/Table.php';
28
29 // +X2C includes
30 require_once 'MECON/Marco/MenuHorizontal.php';
31 // ~X2C
32
33 // +X2C Class 193 :MECON_Marco_MenuPrincipal
34 /**
35  * Clase que se encarga del manejo de los menues principales. Este menu es el de secciones general del sistema.
36  *
37  * @package MECON_Marco
38  * @access public
39  */
40 class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
41     /**
42      * Contiene el objeto seccion que se encuentra seleccionada. Se utiliza para mostrar el menu.
43      *
44      * @var    Seccion $seccionSeleccionada
45      * @access private
46      */
47     var $_seccionSeleccionada;
48
49     // ~X2C
50
51     // +X2C Operation 195
52     /**
53      * @param  array $configuracion Configuracion del sistema
54      *
55      * @return void
56      * @access public
57      */
58     function MECON_Marco_MenuPrincipal($configuracion) // ~X2C
59     {
60         $this->_seccionSeleccionada = null;
61         parent::MECON_Marco_Menu($configuracion);
62
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();                
68 //                }
69         }
70         
71     }
72     // -X2C
73
74
75     // +X2C Operation 199
76     /**
77      * Funcion que se encarga de agregar el body a la seccion seleccionada
78      *
79      * @param  array $body 
80      *
81      * @return void
82      * @access public
83      */
84     function addBody($body) // ~X2C
85     {
86         $colspan = count($this->_componentes);
87         
88         //Agrego el copete {{{
89         $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes']);
90         $row[] = $copete->toHtml();
91         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
92         //}}}
93         
94         //Agrego las secciones    
95         $this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
96         $colcount = $this->_tabla->getColCount();
97         $width = 100 / $colcount;
98
99         for ($col=0; $col < $colcount; $col++) {
100             $this->_tabla->updateColAttributes($col,'width="'.$width.'%"');
101         }        
102
103         foreach ($this->_secciones as $sec) {
104             if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
105                 $this->_seccionSeleccionada = $sec;
106             }
107         }
108         //Agrego el contenido de la pagina
109         if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
110             $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['espacios'], $body['menuVertical']);
111             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
112             $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
113         }
114         else {
115             $row = array ('<font face="Arial, Helvetica, sans-serif" size="3" color="#FFFFFF"><b>'.$this->_seccionSeleccionada->_nombre.'</b></font>');
116             $this->_tabla->addRow($row,'align="left" bgcolor="#336699" colspan="'.$colspan.'"');
117  
118             //Agrego si corresponde el espacio al inicio
119             if ($body['espacios']) {
120                 $espacio = '&nbsp;<BR>';
121             }
122             else {
123                 $espacio = '';
124             }
125             // 
126
127 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE            
128             $row = array();
129             $tmp = '';
130             if ($body['menuVertical']) {
131                 if (is_object($body['menuVertical'])) {
132                     if (method_exists($body['menuVertical'],'toHtml')) {
133                         $tmp.=$body['menuVertical']->toHtml();
134                     } else {
135                         trigger_error('El metodo no existe!', E_USER_WARNING);
136                     }                
137                 } else {
138                     $tmp.=$body['menuVertical'];
139                 }
140                 $row[] = $tmp;
141             }
142      
143             if (is_array($body['body'])) {
144                 $tmp = '';
145                 $tmp = $espacio;
146                 foreach ($body['body'] as $bod) {
147                     if (is_object($bod)) {
148                         if (method_exists($bod,'toHtml')) {
149                             $tmp.=$bod->toHtml();
150                         } else {
151                         trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
152                         }
153                     } else {
154                         $tmp.=$bod;
155                     }
156                 }
157                 $tmp.= $espacio;
158                 $row[] = $tmp;
159             } else {
160                 $row[] = $body['body'];
161             }
162
163             if ($body['menuVertical']) {
164                 $tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
165                 $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
166                 $tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
167                 $contenido[] = $tabla;
168             } else {
169                 $contenido = $row;
170             }
171 //
172             $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
173             
174         }
175     }
176     // -X2C
177
178 } // -X2C Class :MECON_Marco_MenuPrincipal
179
180 ?>