]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco/MenuVertical.php
Nuevo renderer para las tablas de servicios. Falta que lo vea con llucar para ver...
[mecon/meconlib.git] / lib / MECON / Marco / MenuVertical.php
index af5c0986b5a67adaee94c6b799f2cd0621635a83..c415511bad4c36356525a7a2c023d5895aea102d 100644 (file)
@@ -59,8 +59,8 @@ class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
         
         $TABLA = new HTML_Table('width=160 align="left" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0" border="0" height="1"');             
         
-        $menu ='<img src="/MECON/images/general_carpeta0" border="0">&nbsp;<font face="Arial, Helvetica, sans-serif" size="2" color="#000000"><b>'.$titulo.'</b></font>';
-        $row = array ($menu);
+        $menutmp ='<img src="/MECON/images/general_carpeta0" border="0">&nbsp;<font face="Arial, Helvetica, sans-serif" size="2" color="#000000"><b>'.$titulo.'</b></font>';
+        $row = array ($menutmp);
         $TABLA->addRow($row,'align="left" bgcolor="#FFFFFF" height="1"');        
         $TABLA->updateCellAttributes(0,0,'colspan="2"');
        
@@ -77,6 +77,25 @@ class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
         $this->_tabla->addRow($row,'width=160 align="left" bgcolor="#FFFFFF" valign="top"');
         
 //AGREGO EL CUERPO
+        $TABLA2 = new HTML_Table('align="center" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0" border="0"');
+        $row = array();
+        $tmp = '';
+        //AGREGO EL MENU VERTICAL
+        if ($menu) {
+            if (is_object($menu)) {
+                if (method_exists($menu,'toHtml')) {
+                    $tmp.=$menu->toHtml();
+                }
+                else {
+                    trigger_error('El metodo no existe!', E_USER_WARNING);
+                }                
+            }
+            else {
+                $tmp.=$menu;
+            }
+            $row[] = $tmp;
+        }
+        //
         $tmp = '';
         //Agrego si corresponde el espacio al inicio
         if ($this->_configuracion['espacios']) {
@@ -102,7 +121,9 @@ class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
             $tmp.='<BR>&nbsp;';
         }
         //
-        $row = array ($tmp);
+        $row[] = $tmp;
+        $TABLA2->addRow($row, 'valign="top"');
+        $row = array ($TABLA2->toHtml());
         $this->_tabla->setCellContents  (0,1,$row);
         $this->_tabla->setCellAttributes(0,1,'align="center" bgcolor="#FFFFFF" valign="top"');