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