+ 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']) {
+ $espacio = ' <BR>';
+ }
+ else {
+ $espacio = '';
+ }
+ //
+
+//SI HAY MENU ARMO UNA TABLA, SINO TIRO DIRECTAMENTE
+ $row = array();
+ $tmp = '';
+ if ($body['menuVertical']) {
+ if (is_object($body['menuVertical'])) {
+ if (method_exists($body['menuVertical'],'toHtml')) {
+ $tmp.=$body['menuVertical']->toHtml();
+ } else {
+ trigger_error('El metodo no existe!', E_USER_WARNING);
+ }
+ } else {
+ $tmp.=$body['menuVertical'];
+ }
+ $row[] = $tmp;
+ }
+
+ if (is_array($body['body'])) {
+ $tmp = '';
+ $tmp = $espacio;
+ foreach ($body['body'] as $bod) {
+ if (is_object($bod)) {
+ if (method_exists($bod,'toHtml')) {
+ $tmp.=$bod->toHtml();
+ } else {
+ trigger_error('El metodo no existe! - '.get_class($bod).'::toHtml()', E_USER_WARNING);
+ }
+ } else {
+ $tmp.=$bod;
+ }
+ }
+ $tmp.= $espacio;
+ $row[] = $tmp;
+ } else {
+ $row[] = $body['body'];
+ }