]> git.llucax.com Git - mecon/meconlib.git/commitdiff
(no commit message)
authorMartín Marrese <marrese@gmail.com>
Mon, 7 Apr 2003 17:01:33 +0000 (17:01 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 7 Apr 2003 17:01:33 +0000 (17:01 +0000)
HTML/php/Tabla.php

index 0f7eb705fdb5b02e665dad8dccbf8a828e1c5587..b38345a3ee6275e0db649a4731da227e91b2a5f9 100644 (file)
@@ -200,17 +200,29 @@ class Tabla extends HTML_Table {
     * Devuelve el html de la tabla
     *
     * Devuelve el html de la tabla para que sea mostrado.
+    * Como parametro recibe el indicador de tabla simple.
+    * Si doble es 0, devuelve el html comun y corriente, si es
+    * distinto de 0 devuelve una tabla sola
+    *
+    * @param int $doble
     *
     * @return string Html
     * 
     * @access public
     */
-    function toHtml ()
+    function toHtml ($doble = 0)
     {
         // Agregar la tabla de fondo.
-        $tabla_externa =  new HTML_Table($this->_conf['atributos']['tabla_contenedora']);
-        $tabla_externa->setCellContents(0,0,parent::toHtml(),$this->_conf['atributos']['celda_comun']);
-        return $tabla_externa->toHtml();    
+        if ($doble == 0 ) {
+            $tabla_externa =  new HTML_Table($this->_conf['atributos']['tabla_contenedora']);
+            $tabla_externa->setCellContents(0,0,parent::toHtml(),$this->_conf['atributos']['celda_comun']);
+            $result = $tabla_externa->toHtml();    
+        }
+        else {
+            $result = parent::toHtml();
+        }
+
+        return $result;
     }
 }  
 ?>