]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuPrincipal.php
BugFix
[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 '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" colspan="'.$colspan.'"');
92         //}}}
93         
94         //Agrego las secciones    
95         $this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
96         $width = intval (100 / $colspan);
97
98         for ($col=0; $col < $colspan; $col++) {
99             $this->_tabla->updateCellAttributes(1,$col,'width="'.$width.'%"');
100         }
101
102         $imagen = new HTML_Image('/MECON/images/general_linea.gif');
103         $i = $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center" colspan="'.$colspan.'"');
104         $this->_tabla->updateRowAttributes($i, 'height="1"');
105         
106         foreach ($this->_secciones as $sec) {
107             if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
108                 $this->_seccionSeleccionada = $sec;
109             }
110         }
111         //Agrego el contenido de la pagina
112         if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
113             $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['menuVertical']);
114             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
115             $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
116         }
117         else {
118             if ($this->_seccionSeleccionada) {
119                 $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre));
120                 $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
121                 $imagen = new HTML_Image('/MECON/images/general_linea2.gif', 'boder="0" align="center"');
122                 $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center" colspan="'.$colspan.'"');
123             }
124  
125             //Agrego si corresponde el espacio al inicio
126             if ($this->_configuracion['espacios']) {
127                 $espacio = '&nbsp;<BR>';
128             }
129             else {
130                 $espacio = '';
131             }
132             // 
133
134 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE            
135             $row = array();
136             $tmp = '';
137             if ($body['menuVertical']) {
138                 if (is_object($body['menuVertical'])) {
139                     if (method_exists($body['menuVertical'],'toHtml')) {
140                         $tmp.=$body['menuVertical']->toHtml();
141                     } else {
142                         trigger_error('El metodo no existe!', E_USER_WARNING);
143                     }                
144                 } else {
145                     $tmp.=$body['menuVertical'];
146                 }
147                 $row[] = $tmp;
148             }
149      
150             if (is_array($body['body'])) {
151                 $tmp = '';
152                 $tmp = $espacio;
153                 foreach ($body['body'] as $bod) {
154                     if (is_object($bod)) {
155                         if (method_exists($bod,'toHtml')) {
156                             $tmp.=$bod->toHtml();
157                         } else {
158                           trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
159                         }
160                     } else {
161                         $tmp.=$bod;
162                     }
163                 }
164                 $tmp.= $espacio;
165                 $row[] = $tmp;
166             } else {
167                 $row[] = $body['body'];
168             }
169
170             if ($body['menuVertical']) {
171                 $tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
172                 $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
173                 $tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
174                 $contenido[] = $tabla;
175             } else {
176                 $contenido = $row;
177             }
178 //
179             $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'" valign="top"');            
180         }
181     }
182     // -X2C
183
184 } // -X2C Class :MECON_Marco_MenuPrincipal
185
186 ?>