]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuPrincipal.php
BugFix - Si se agregan secciones sin hijos agrega el titulo azul con el nombre de...
[mecon/meconlib.git] / lib / MECON / Marco / MenuPrincipal.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: Thu May 15 18:36:01 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 #require_once 'PEAR.php';
28
29
30 // +X2C includes
31 require_once 'MECON/Marco/MenuHorizontal.php';
32 // ~X2C
33
34 // +X2C Class 193 :MenuPrincipal
35 /**
36  * Clase que se encarga del manejo de los menues principales. Este menu es el de secciones general del sistema.
37  *
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);
108             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
109                 
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             if (is_array($body['body'])) {
115                 $tmp = '';
116                 foreach ($body['body'] as $bod) {
117                     if (is_object($bod)) {
118                         if (method_exists($bod,'toHtml')) {
119                             $tmp.=$bod->toHtml();
120                         }
121                         else {
122                         trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
123                         }
124                     }
125                     else {
126                         $tmp.=$bod;
127                     }
128                 }
129                 $row = array ($tmp);
130             }
131             else {
132                 $row = array ($body['body']);
133             }
134         }
135         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
136
137         $row = array ($body['pie']);
138         $this->_tabla->addRow($row,'align="center" bgcolor="#CCCCCC" colspan="'.$colspan.'"');
139     }
140     // -X2C
141
142 } // -X2C Class :MenuPrincipal
143
144 ?>