-<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
+<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4:
-------------------------------------------------------------------------------
Ministerio de EconomÃa
meconlib
-----------------------------------------------------------------------------*/
require_once 'HTML/Table.php';
+require_once 'HTML/Image.php';
// +X2C includes
require_once 'MECON/Marco/MenuHorizontal.php';
//Agrego las secciones
$this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
- $colcount = $this->_tabla->getColCount();
- $width = 100 / $colcount;
+ $width = intval (100 / $colspan);
- for ($col=0; $col < $colcount; $col++) {
- $this->_tabla->updateColAttributes($col,'width="'.$width.'%"');
- }
+ for ($col=0; $col < $colspan; $col++) {
+ $this->_tabla->updateCellAttributes(1,$col,'width="'.$width.'%"');
+ }
+ $imagen = new HTML_Image('/MECON/images/general_linea.gif');
+ $i = $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center" colspan="'.$colspan.'"');
+ $this->_tabla->updateRowAttributes($i, 'height="1"');
+
foreach ($this->_secciones as $sec) {
if ($sec->verifSeccionSeleccionada($_SERVER['PHP_SELF'])) {
$this->_seccionSeleccionada = $sec;
$this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
}
else {
- $row = array ('<font face="Arial, Helvetica, sans-serif" size="3" color="#FFFFFF"><b>'.$this->_seccionSeleccionada->_nombre.'</b></font>');
- $this->_tabla->addRow($row,'align="left" bgcolor="#336699" colspan="'.$colspan.'"');
+ if ($this->_seccionSeleccionada) {
+ $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre));
+ $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
+ $imagen = new HTML_Image('/MECON/images/general_linea2.gif', 'boder="0" align="center"');
+ $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center" colspan="'.$colspan.'"');
+ }
//Agrego si corresponde el espacio al inicio
if ($this->_configuracion['espacios']) {
if (method_exists($bod,'toHtml')) {
$tmp.=$bod->toHtml();
} else {
- trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
+ trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
}
} else {
$tmp.=$bod;
if ($body['menuVertical']) {
$tabla = new HTML_Table (array('width' => '760', 'border' => 0, 'celspacing' => 0, 'celpadding' => 0));
- $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
+ $tt = $tabla->addRow($row,'align="center" bgcolor="#FFFFFF" valign="top"');
$tabla->updateCellAttributes($tt, 0, 'valign="top" width="1%"');
$contenido[] = $tabla;
} else {
$contenido = $row;
}
//
- $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
-
+ $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'" valign="top"');
}
}
// -X2C