]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuVertical.php
Primer intento de arreglar los bullets.
[mecon/meconlib.git] / lib / MECON / Marco / MenuVertical.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: Tue Apr 29 12:35:45 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 // +X2C includes
28 require_once 'MECON/Marco/Menu.php';
29 // ~X2C
30
31 // +X2C Class 103 :MenuVertical
32 /**
33  * Clase que se encarga del manejo de los menues verticales
34  *
35  * @package MECON_Marco
36  * @access public
37  */
38 class MenuVertical extends Menu {
39     // ~X2C
40
41
42     // +X2C Operation 110
43     /**
44      * Constructor. Recibe el nombre del directorio en donde esta instalado el sistema
45      *
46      * @param  array $configuracion Configuracion del sistema
47      *
48      * @return void
49      * @access public
50      */
51     function MenuVertical($configuracion = null) // ~X2C
52     {
53         parent::Menu($configuracion);
54     }
55     // -X2C
56
57     // +X2C Operation 141
58     /**
59      * Funcion para agregar el cuerpo de la pagina a la pagina
60      *
61      * @param  string $body Cuerpo del mensaje para agregar a la pagina
62      * @param  string $titulo Titulo de la seccion seleccionada
63      * @param  bool $espacios Indica si hay que agregar espacios antes y despues del body
64      * @param  mixed $menu Menu a mostrar
65      *
66      * @return void
67      * @access public
68      */
69     function addBody($body, $titulo, $espacios = true, $menu = null) // ~X2C
70     {
71         $c= count($this->_componentes); 
72         
73         $tmp = $this->_componentes;
74         $this->_componentes = array ();
75         $this->_armarArraySecciones($tmp);
76         
77         $TABLA = new HTML_Table('width=160 align="left" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0" border="0" height="1"');             
78         
79         $menu ='<img src="/MECON/images/general_carpeta0" border="0">&nbsp;<font face="Arial, Helvetica, sans-serif" size="2" color="#000000"><b>'.$titulo.'</b></font>';
80         $row = array ($menu);
81         $TABLA->addRow($row,'align="left" bgcolor="#FFFFFF" height="1"');        
82         $TABLA->updateCellAttributes(0,0,'colspan="2"');
83        
84         foreach ($this->_componentesVertical as $comp) {
85             $row = array ('<img src="/MECON/images/general_carp" border="0">',' ');
86             $TABLA->addRow($row);        
87             $TABLA->addRow($comp,'align="left" bgcolor="#FFFFFF" height="1"');
88             $TABLA->updateColAttributes(0,'align="right" width="34"');
89             $TABLA->updateColAttributes(1,'align="left"');
90         }
91         $TABLA->updateCellAttributes(0,0,'align="left"');
92         $row = array ($TABLA->toHtml());
93         
94         $this->_tabla->addRow($row,'width=160 align="left" bgcolor="#FFFFFF" valign="top"');
95         
96 //AGREGO EL CUERPO
97         $tmp = '';
98         //Agrego si corresponde el espacio al inicio
99         if ($espacios) {
100             $tmp.='&nbsp;<BR>';
101         }
102         //
103
104         foreach ($body as $bod) {
105             if (is_object($bod)) {
106                 if (method_exists($bod,'toHtml')) {
107                     $tmp.=$bod->toHtml();
108                 }
109                 else {
110                     trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
111                 }                
112             }
113             else {
114                 $tmp.=$bod;
115             }
116         }        
117         //Agrego si corresponde el espacio al final
118         if ($espacios) {
119             $tmp.='<BR>&nbsp;';
120         }
121         //
122         $row = array ($tmp);
123         $this->_tabla->setCellContents  (0,1,$row);
124         $this->_tabla->setCellAttributes(0,1,'align="center" bgcolor="#FFFFFF" valign="top"');
125
126         $this->_tabla->updateColAttributes (1,'width="600"');
127 //
128     }
129     // -X2C
130
131 } // -X2C Class :MenuVertical
132
133 ?>