]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuPrincipal.php
Finalizo la poda. Faltan los permisos.
[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 = null;
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         parent::MECON_Marco_Menu($configuracion);
61
62         if (!is_null($configuracion['secciones'] || $configuracion['secciones'] == '')) {
63             $this->_armarArraySecciones($this->_obtenerConfSecciones());
64             //Serializo el array asociativo de paginas-secciones
65 //                if (!file_exists($this->_configuracion['directorios']['root'].'/'.ARRAYSECCIONES_SERIALIZADO)) {
66                     $this->_serializarArraySecciones();                
67 //                }
68         }
69         
70     }
71     // -X2C
72
73
74     // +X2C Operation 199
75     /**
76      * Funcion que se encarga de agregar el body a la seccion seleccionada
77      *
78      * @param  array $body 
79      *
80      * @return void
81      * @access public
82      */
83     function addBody($body) // ~X2C
84     {
85         $colspan = count($this->_componentes);
86         
87         //Agrego el copete {{{
88         $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes']);
89         $row[] = $copete->toHtml();
90         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
91         //}}}
92         
93         //Agrego las secciones    
94         $this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
95         $colcount = $this->_tabla->getColCount();
96         $width = 100 / $colcount;
97
98         for ($col=0; $col < $colcount; $col++) {
99             $this->_tabla->updateColAttributes($col,'width="'.$width.'%"');
100         }        
101
102         foreach ($this->_secciones as $sec) {
103             if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
104                 $this->_seccionSeleccionada = $sec;
105             }
106         }
107         //Agrego el contenido de la pagina
108         if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
109             $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['menuVertical']);
110             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
111             $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
112         }
113         else {
114             $row = array ('<font face="Arial, Helvetica, sans-serif" size="3" color="#FFFFFF"><b>'.$this->_seccionSeleccionada->_nombre.'</b></font>');
115             $this->_tabla->addRow($row,'align="left" bgcolor="#336699" colspan="'.$colspan.'"');
116  
117             //Agrego si corresponde el espacio al inicio
118             if ($this->_configuracion['espacios']) {
119                 $espacio = '&nbsp;<BR>';
120             }
121             else {
122                 $espacio = '';
123             }
124             // 
125
126 //SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE            
127             $row = array();
128             $tmp = '';
129             if ($body['menuVertical']) {
130                 if (is_object($body['menuVertical'])) {
131                     if (method_exists($body['menuVertical'],'toHtml')) {
132                         $tmp.=$body['menuVertical']->toHtml();
133                     } else {
134                         trigger_error('El metodo no existe!', E_USER_WARNING);
135                     }                
136                 } else {
137                     $tmp.=$body['menuVertical'];
138                 }
139                 $row[] = $tmp;
140             }
141      
142             if (is_array($body['body'])) {
143                 $tmp = '';
144                 $tmp = $espacio;
145                 foreach ($body['body'] as $bod) {
146                     if (is_object($bod)) {
147                         if (method_exists($bod,'toHtml')) {
148                             $tmp.=$bod->toHtml();
149                         } else {
150                         trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
151                         }
152                     } else {
153                         $tmp.=$bod;
154                     }
155                 }
156                 $tmp.= $espacio;
157                 $row[] = $tmp;
158             } else {
159                 $row[] = $body['body'];
160             }
161
162             if ($body['menuVertical']) {
163                 $tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
164                 $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
165                 $tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
166                 $contenido[] = $tabla;
167             } else {
168                 $contenido = $row;
169             }
170 //
171             $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
172             
173         }
174     }
175     // -X2C
176
177 } // -X2C Class :MECON_Marco_MenuPrincipal
178
179 ?>