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