]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuPrincipal.php
Se corrigen los ALT para que se vea bien con navegadores de texto.
[mecon/meconlib.git] / lib / MECON / Marco / MenuPrincipal.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4:
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 require_once 'MECON/HTML/Image.php';
29
30 // +X2C includes
31 require_once 'MECON/Marco/MenuHorizontal.php';
32 // ~X2C
33
34 // +X2C Class 193 :MECON_Marco_MenuPrincipal
35 /**
36  * Clase que se encarga del manejo del menu principal. Este menu es el de secciones general del sistema.
37  *
38  * @package MECON_Marco
39  * @access public
40  */
41 class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
42     /**
43      * Contiene el objeto seccion que se encuentra seleccionada. Se utiliza para mostrar el menu.
44      *
45      * @var    Seccion $seccionSeleccionada
46      * @access private
47      */
48     var $_seccionSeleccionada = null;
49
50     // ~X2C
51
52     // +X2C Operation 195
53     /**
54      * @param  array $configuracion Configuracion del sistema
55      *
56      * @return void
57      * @access public
58      */
59     function MECON_Marco_MenuPrincipal($configuracion) // ~X2C
60     {
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                 @$this->_configuracion['ayuda'], $this->_configuracion['titulo_sistema']);
91         $row[] = $copete->toHtml();
92         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
93         //}}}
94         
95         //Agrego las secciones    
96         $TABLAM = new HTML_Table('width=760 
97                                   align="center" 
98                                   cellspacing="0" 
99                                   cellpadding="0" 
100                                   border="0"
101                                   background="/MECON/images/general_fondo_gris.gif"');
102         $TABLAM->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
103         $width = intval (100 / $colspan);
104
105         for ($col=0; $col < $colspan; $col++) {
106             $TABLAM->updateCellAttributes(0,$col,'width="'.$width.'%"');
107         }
108         $this->_tabla->addRow(array($TABLAM));
109
110         $imagen = new MECON_HTML_Image('/MECON/images/general_linea.gif', str_repeat('=', 108));
111         $i = $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
112         $this->_tabla->updateRowAttributes($i, 'height="1"');
113         
114         foreach ($this->_secciones as $sec) {
115             if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
116                 $this->_seccionSeleccionada = $sec;
117             }
118         }
119         //Agrego el contenido de la pagina
120         if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
121             $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['menuVertical']);
122             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
123             $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
124         }
125         else {
126             if ($this->_seccionSeleccionada) {
127                 $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre.$this->_configuracion['subtitulo']));
128                 $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF"');
129                 $imagen = new MECON_HTML_Image('/MECON/images/general_linea2.gif',
130                         str_repeat('-', 108), array('border' => 0, 'align' => 'center'));
131                 $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
132             }
133  
134             //Agrego si corresponde el espacio al inicio
135             if ($this->_configuracion['espacios']) {
136                 $espacio = '&nbsp;<BR>';
137             }
138             else {
139                 $espacio = '';
140             }
141             // 
142
143 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE            
144             $row = array();
145             $tmp = '';
146             if ($body['menuVertical']) {
147                 if (is_object($body['menuVertical'])) {
148                     if (method_exists($body['menuVertical'],'toHtml')) {
149                         $tmp.=$body['menuVertical']->toHtml();
150                     } else {
151                         trigger_error('El metodo no existe!', E_USER_WARNING);
152                     }                
153                 } else {
154                     $tmp.=$body['menuVertical'];
155                 }
156                 $row[] = $tmp;
157             }
158      
159             if (is_array($body['body'])) {
160                 $tmp = '';
161                 $tmp = $espacio;
162                 foreach ($body['body'] as $bod) {
163                     if (is_object($bod)) {
164                         if (method_exists($bod,'toHtml')) {
165                             $tmp.=$bod->toHtml();
166                         } else {
167                           trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
168                         }
169                     } else {
170                         $tmp.=$bod;
171                     }
172                 }
173                 $tmp.= $espacio;
174                 $row[] = $tmp;
175             } else {
176                 $row[] = $body['body'];
177             }
178
179             if ($body['menuVertical']) {
180                 $tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
181                 $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF" valign="top"');
182                 $tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
183                 $contenido[] = $tabla;
184             } else {
185                 $contenido = $row;
186             }
187 //
188             $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" valign="top"');            
189         }
190     }
191     // -X2C
192
193 } // -X2C Class :MECON_Marco_MenuPrincipal
194
195 ?>