------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ require_once 'MECON/Marco/Menu.php'; /** * Clase que se encarga del manejo de los menues verticales * * @access public */ class MECON_Marco_MenuVertical extends MECON_Marco_Menu { /** * Funcion para agregar el cuerpo de la pagina a la pagina * * @param string $body Cuerpo del mensaje para agregar a la pagina * @param string $titulo Titulo de la seccion seleccionada * @param mixed $menu Menu a mostrar * * @return void * @access public */ function addBody($body, $titulo, $menu = null) { $tmp = $this->_componentes; $this->_componentes = array (); $this->_armarArraySecciones($tmp); $TABLA = new HTML_Table('width=152 align="left" cellspacing="0" cellpadding="0" border="0" height="1" background="/MECON/images/general_titulo_menu.gif"'); $menutmp ='
 '.$titulo.'
'; $TABLA->addRow(array ($menutmp),'align="left"'); $TABLA->updateCellAttributes(0,0,'colspan="2"'); $TABLA->addRow( array( '', '' ) ); foreach ($this->_componentesVertical as $comp) { $TABLA->addRow($comp,'align="left" height="3" background="/MECON/images/general_fondo_gris"'); $TABLA->updateColAttributes(0, 'align="right" width="34" height="3"'); $TABLA->updateColAttributes(1,'align="left" width="118"'); $TABLA->addRow( array( '', '' ) ); } $TABLA->updateCellAttributes(0,0,'align="left"'); $cuerpo = ''; if (is_array($body)) { if ($this->_configuracion['espacios']) { $cuerpo.= ' 
'; } foreach ($body as $bod) { if (is_object($bod)) { if (method_exists($bod,'toHtml')) { $cuerpo.= $bod->toHtml(); } else { trigger_error('El metodo no existe! - '. get_class($bod).'::toHtml()', E_USER_WARNING); } } else { $cuerpo.= $bod; } } } else { $cuerpo = $body; } if ($menu) { $MENUVERTICAL = new HTML_Table ('width="608" bgcolor="#FFFFFF"'); $MENUVERTICAL->addRow(array($menu, $cuerpo), 'valign="top"'); $MENUVERTICAL->updateColAttributes(0, 'width="10%"'); $cuerpo = $MENUVERTICAL; } $this->_tabla->addRow(array($TABLA, $cuerpo),'align="left" bgcolor="#FFFFFF" valign="top"'); $this->_tabla->updateColAttributes(0, 'width="10%"'); $this->resultado[] = $this->_tabla; } } ?>