]> git.llucax.com Git - mecon/meconlib.git/blob - lib/Marco/MenuPrincipal.php
Se cambia a la nueva estructura de directorios a Marco.
[mecon/meconlib.git] / lib / 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 '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      *
46      * @access private
47      */
48     var $_seccionSeleccionada;
49
50     // ~X2C
51
52     // +X2C Operation 195
53     /**
54      *
55      * @param  string $directorio Path en donde se encuentra el sistema.
56      *
57      * @return void
58      *
59      * @access public
60      */
61     function menuPrincipal($directorio) // ~X2C
62     {
63         $this->_seccionSeleccionada = null;
64         parent::Menu($directorio);
65
66         if (!is_null($directorio)) {
67             $this->_armarArraySecciones($this->_obtenerConfSecciones());
68             //Serializo el array asociativo de paginas-secciones
69 //                if (!file_exists(PRE_DIR.$directorio.POST_DIR.ARRAYSECCIONES_SERIALIZADO)) {
70                     $this->_serializarArraySecciones();                
71 //                }
72         }
73         
74     }
75     // -X2C
76
77
78     // +X2C Operation 199
79     /**
80      * Funcion que se encarga de agregar el body a la seccion seleccionada
81      *
82      * @param  array $body 
83      *
84      * @return void
85      *
86      * @access public
87      */
88     function addBody($body) // ~X2C
89     {
90         $colspan = count($this->_componentes);
91   
92         $row = array ($body['copete']);
93         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
94         
95         //Agrego las secciones    
96         $this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
97         $colcount = $this->_tabla->getColCount();
98         $width = 100 / $colcount;
99
100         for ($col=0; $col < $colcount; $col++) {
101             $this->_tabla->updateColAttributes($col,'width="'.$width.'%"');
102         }        
103
104         foreach ($this->_secciones as $sec) {
105             if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
106                 $this->_seccionSeleccionada = $sec;
107             }
108         }
109         
110         //Agrego el contenido de la pagina
111         if (!is_null($this->_seccionSeleccionada)) {
112             $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre);
113             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
114         }
115         else {
116             $row = array ($body['body']);
117         }
118         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
119
120         $row = array ($body['pie']);
121         $this->_tabla->addRow($row,'align="center" bgcolor="#CCCCCC" colspan="'.$colspan.'"');
122         
123     }
124     // -X2C
125
126 } // -X2C Class :MenuPrincipal
127
128 ?>