]> git.llucax.com Git - mecon/meconlib.git/commitdiff
BugFix a Marco
authorMartín Marrese <marrese@gmail.com>
Wed, 13 Aug 2003 21:28:06 +0000 (21:28 +0000)
committerMartín Marrese <marrese@gmail.com>
Wed, 13 Aug 2003 21:28:06 +0000 (21:28 +0000)
lib/MECON/Marco/Menu.php
lib/MECON/Marco/MenuPrincipal.php
lib/MECON/Marco/MenuVertical.php

index 05c3c8787d849ec092d94108550f2bf77e306e8a..d73124ff859637d70ac5f1f11bc14919ebafb0d0 100644 (file)
@@ -105,7 +105,7 @@ class MECON_Marco_Menu {
                                         cellspacing="0" 
                                         cellpadding="0" 
                                         border="0"
                                         cellspacing="0" 
                                         cellpadding="0" 
                                         border="0"
-                                        background="/MECON/images/general_fondo_gris"');
+                                        bgcolor="#FFFFFF"');
         $this->_tabla->setLineEnd('');
         $this->_tabla->setTab('');
         
         $this->_tabla->setLineEnd('');
         $this->_tabla->setTab('');
         
index db966503cbb65c837ad6e892001da9d39a18c1f5..e72db77a461e1798d0400ca5eee8d802cc3db79f 100644 (file)
@@ -88,19 +88,26 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
         //Agrego el copete {{{
         $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes']);
         $row[] = $copete->toHtml();
         //Agrego el copete {{{
         $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes']);
         $row[] = $copete->toHtml();
-        $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
+        $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
         //}}}
         
         //Agrego las secciones    
         //}}}
         
         //Agrego las secciones    
-        $this->_tabla->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
+        $TABLAM = new HTML_Table('width=760 
+                                  align="center" 
+                                  cellspacing="0" 
+                                  cellpadding="0" 
+                                  border="0"
+                                  background="/MECON/images/general_fondo_gris.gif"');
+        $TABLAM->addRow($this->_componentes,'align="center" bgcolor="#CCCCCC"');
         $width = intval (100 / $colspan);
 
         for ($col=0; $col < $colspan; $col++) {
         $width = intval (100 / $colspan);
 
         for ($col=0; $col < $colspan; $col++) {
-            $this->_tabla->updateCellAttributes(1,$col,'width="'.$width.'%"');
+            $TABLAM->updateCellAttributes(0,$col,'width="'.$width.'%"');
         }
         }
+        $this->_tabla->addRow(array($TABLAM));
 
         $imagen = new HTML_Image('/MECON/images/general_linea.gif');
 
         $imagen = new HTML_Image('/MECON/images/general_linea.gif');
-        $i = $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center" colspan="'.$colspan.'"');
+        $i = $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
         $this->_tabla->updateRowAttributes($i, 'height="1"');
         
         foreach ($this->_secciones as $sec) {
         $this->_tabla->updateRowAttributes($i, 'height="1"');
         
         foreach ($this->_secciones as $sec) {
@@ -112,14 +119,14 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
         if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
             $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['menuVertical']);
             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
         if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) {
             $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre, $body['menuVertical']);
             $row = array ($this->_seccionSeleccionada->_hijos->toHtml());
-            $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
+            $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
         }
         else {
             if ($this->_seccionSeleccionada) {
                 $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre));
         }
         else {
             if ($this->_seccionSeleccionada) {
                 $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre));
-                $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
+                $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF"');
                 $imagen = new HTML_Image('/MECON/images/general_linea2.gif', 'boder="0" align="center"');
                 $imagen = new HTML_Image('/MECON/images/general_linea2.gif', 'boder="0" align="center"');
-                $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center" colspan="'.$colspan.'"');
+                $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
             }
  
             //Agrego si corresponde el espacio al inicio
             }
  
             //Agrego si corresponde el espacio al inicio
@@ -176,7 +183,7 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
                 $contenido = $row;
             }
 //
                 $contenido = $row;
             }
 //
-            $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'" valign="top"');            
+            $this->_tabla->addRow($contenido,'align="center" bgcolor="#FFFFFF" valign="top"');            
         }
     }
     // -X2C
         }
     }
     // -X2C
index bfd5e21082311460cff21be915b94252b45906b0..972cc831ca53f1a1d5e91af5a5615ad3431157cb 100644 (file)
@@ -136,7 +136,7 @@ class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
         $this->_tabla->setCellAttributes(0,2,'align="center" bgcolor="#FFFFFF" valign="top"');
 
         $this->_tabla->updateColAttributes (1,'width="8" bgcolor="#FFFFFF"');
         $this->_tabla->setCellAttributes(0,2,'align="center" bgcolor="#FFFFFF" valign="top"');
 
         $this->_tabla->updateColAttributes (1,'width="8" bgcolor="#FFFFFF"');
-        $this->_tabla->updateColAttributes (2,'width="600"');
+        $this->_tabla->updateColAttributes (2,'width="600" bgcolor="#FFFFFF"');
 //
     }
     // -X2C
 //
     }
     // -X2C