]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuPrincipal.php
Se cambian los nombres de HTML_Link y HTML_Image por MECON_HTML_Link y MECON_HTML_Ima...
[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         $row[] = $copete->toHtml();
91         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
92         //}}}
93         
94         //Agrego las secciones    
95         $TABLAM = new HTML_Table('width=760 
96                                   align="center" 
97                                   cellspacing="0" 
98                                   cellpadding="0" 
99                                   border="0"
100                                   background="/MECON/images/general_fondo_gris.gif"');
101         $TABLAM->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
102         $width = intval (100 / $colspan);
103
104         for ($col=0; $col < $colspan; $col++) {
105             $TABLAM->updateCellAttributes(0,$col,'width="'.$width.'%"');
106         }
107         $this->_tabla->addRow(array($TABLAM));
108
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"');
112         
113         foreach ($this->_secciones as $sec) {
114             if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
115                 $this->_seccionSeleccionada = $sec;
116             }
117         }
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"');
123         }
124         else {
125             if ($this->_seccionSeleccionada) {
126                 $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre));
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"');
130             }
131  
132             //Agrego si corresponde el espacio al inicio
133             if ($this->_configuracion['espacios']) {
134                 $espacio = '&nbsp;<BR>';
135             }
136             else {
137                 $espacio = '';
138             }
139             // 
140
141 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE            
142             $row = array();
143             $tmp = '';
144             if ($body['menuVertical']) {
145                 if (is_object($body['menuVertical'])) {
146                     if (method_exists($body['menuVertical'],'toHtml')) {
147                         $tmp.=$body['menuVertical']->toHtml();
148                     } else {
149                         trigger_error('El metodo no existe!', E_USER_WARNING);
150                     }                
151                 } else {
152                     $tmp.=$body['menuVertical'];
153                 }
154                 $row[] = $tmp;
155             }
156      
157             if (is_array($body['body'])) {
158                 $tmp = '';
159                 $tmp = $espacio;
160                 foreach ($body['body'] as $bod) {
161                     if (is_object($bod)) {
162                         if (method_exists($bod,'toHtml')) {
163                             $tmp.=$bod->toHtml();
164                         } else {
165                           trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
166                         }
167                     } else {
168                         $tmp.=$bod;
169                     }
170                 }
171                 $tmp.= $espacio;
172                 $row[] = $tmp;
173             } else {
174                 $row[] = $body['body'];
175             }
176
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;
182             } else {
183                 $contenido = $row;
184             }
185 //
186             $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" valign="top"');            
187         }
188     }
189     // -X2C
190
191 } // -X2C Class :MECON_Marco_MenuPrincipal
192
193 ?>