$Id$
-----------------------------------------------------------------------------*/
-// +X2C includes
require_once 'MECON/Marco/Menu.php';
-// ~X2C
-// +X2C Class 103 :MECON_Marco_MenuVertical
/**
* Clase que se encarga del manejo de los menues verticales
*
- * @package MECON_Marco
* @access public
*/
class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
- // ~X2C
-
- // +X2C Operation 141
/**
* Funcion para agregar el cuerpo de la pagina a la pagina
*
* @return void
* @access public
*/
- function addBody($body, $titulo, $menu = null) // ~X2C
+ function addBody($body, $titulo, $menu = null)
{
$c= count($this->_componentes);
$row = array ($TABLA->toHtml());
$this->_tabla->addRow($row,'width=152 align="left" bgcolor="#FFFFFF" valign="top"');
-
-//AGREGO EL CUERPO
+
+ //AGREGO EL CUERPO
$TABLA2 = new HTML_Table('width="600"align="right" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0" border="0"');
$row = array();
$tmp = '';
}
$row[] = $tmp;
}
- //
$tmp = '';
//Agrego si corresponde el espacio al inicio
if ($this->_configuracion['espacios']) {
$tmp.=' <BR>';
}
- //
foreach ($body as $bod) {
if (is_object($bod)) {
if ($this->_configuracion['espacios']) {
$tmp.='<BR> ';
}
- //
$row[] = $tmp;
$TABLA2->addRow($row, 'valign="top"');
$row = array ($TABLA2->toHtml());
$this->_tabla->updateColAttributes (1,'width="8" bgcolor="#FFFFFF"');
$this->_tabla->updateColAttributes (2,'width="600" bgcolor="#FFFFFF"');
-//
}
- // -X2C
-
-} // -X2C Class :MECON_Marco_MenuVertical
-
+}
?>
\ No newline at end of file