]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/MenuHorizontal.php
c20d45edf494570ca6d173355ca3a10bdfc68432
[mecon/meconlib.git] / lib / MECON / Marco / MenuHorizontal.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 require_once 'MECON/Marco/Menu.php';
28 require_once 'MECON/HTML/Image.php';
29
30 /**
31  * Clase que se encarga del manejo de los menues horizontales
32  *
33  * @access public
34  */
35 class MECON_Marco_MenuHorizontal extends MECON_Marco_Menu {
36     /**
37      * Funcion para agregar el cuerpo de la pagina a la pagina
38      *
39      * @param  string $body Body para agregar a la pagina
40      * @param  string $titulo Titulo de la seccion seleccionada
41      * @param  mixed $menu Menu a mostrar
42      *
43      * @return void
44      * @access public
45      */
46     function addBody($body, $titulo, $menu = null) 
47     {
48         $tmp = $this->_componentes;
49         $this->_componentes = array ();
50         $this->_armarArraySecciones($tmp);
51         $tmp = $this->_tabla->addRow($this->_componentes,
52                 'align="center" bgcolor="#CCCCCC" valign="top"');
53         $colspan = count($this->_componentes); 
54         $width = intval (100 / $colspan);
55         for ($col=0; $col < $colspan; $col++) {
56             $this->_tabla->updateCellAttributes($tmp, $col,
57                     'width="'.$width.'%"');
58         }
59
60         $imagen = new MECON_HTML_Image('/MECON/images/general_linea.gif', 
61                 str_repeat('=', 108));
62         $tmp = $this->_tabla->addRow(array($imagen->toHtml()), 
63                 'align="center"  height="1" colspan="'. $colspan .'"');
64
65         
66         //Agrego el titulo
67         $row = array($this->_armarEncabezado($titulo . 
68                     $this->_configuracion['subtitulo']));
69         $this->_tabla->addRow($row,
70                 'align="left" bgcolor="#FFFFFF" colspan="'
71                 . $colspan .'"');
72         $imagen = new MECON_HTML_Image('/MECON/images/general_linea2.gif',
73                 str_repeat('.', 108), 'border="0" align="center"');
74         $this->_tabla->addRow(array ($imagen->toHtml()), 
75                 'align="center" colspan="'. $colspan .'"');
76                    
77         $tmp='';
78
79         $this->resultado[] = $this->_tabla;
80         
81         if ($menu) {
82             $MENUVERTICAL = new HTML_Table ('width="760" align="left"');
83             $cuerpo = '';
84             if (is_array($body)) {
85                 if ($this->_configuracion['espacios']) {
86                     $cuerpo.= '&nbsp;<BR>';
87                 }
88                 foreach ($body as $bod) {
89                     if (is_object($bod)) {
90                         if (method_exists($bod,'toHtml')) {
91                             $cuerpo.= $bod->toHtml();
92                         } 
93                         else {
94                             trigger_error('El metodo no existe! - '. 
95                                     get_class($bod).'::toHtml()', 
96                                     E_USER_WARNING);
97                         }
98                     } 
99                     else {
100                         $cuerpo.= $bod;
101                     }
102                 }
103             } 
104             else {
105                 $cuerpo = $body;
106             }
107             $MENUVERTICAL->addRow(array($menu, $cuerpo),
108                     'valign="top"');
109             $MENUVERTICAL->updateColAttributes(0, 'width="10%"');
110             $this->resultado[] = $MENUVERTICAL;
111         }
112         else {
113             //Agrego si corresponde el espacio al inicio
114             if ($this->_configuracion['espacios']) {
115                 $this->resultado[] = '&nbsp;<BR>';
116             }
117             $this->resultado = array_merge($this->resultado, $body);
118         }
119     }
120 }
121 ?>