]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se agrego la posibilidad de cambiar la alineacion de la tabla en relacion a la pagina.
authorMartín Marrese <marrese@gmail.com>
Wed, 24 Sep 2003 15:27:22 +0000 (15:27 +0000)
committerMartín Marrese <marrese@gmail.com>
Wed, 24 Sep 2003 15:27:22 +0000 (15:27 +0000)
lib/MECON/HTML/Tabla.php

index 65512ff44bfe77b0fd22c28491e1f56734605974..d12cacfb9d15bdcf8eb78faf744131dd69c951a8 100644 (file)
@@ -74,6 +74,9 @@ class MECON_HTML_Tabla extends HTML_Table {
             if (isset($attrs['width'])) {
                 $this->_attrs['width'] = $attrs['width'];
             }
+            if (isset($attrs['align'])) {
+                $this->_attrs['align'] = $attrs['align'];
+            }
             if (isset($attrs['bgcolor'])) {
                 $this->_attrs['bgcolor'] = $attrs['bgcolor'];
             }
@@ -256,12 +259,14 @@ class MECON_HTML_Tabla extends HTML_Table {
      */
     function toHtml($simple = 0)
     {
+
         // Agregar la tabla de fondo.
         if ($simple) {
             $result = parent::toHtml();
         } else {
             $contenedora = $this->_conf['atributos']['tabla_contenedora'];
             $contenedora['width'] = $this->getAttribute('width');
+            $contenedora['align'] = $this->getAttribute('align');
             $this->updateAttributes(array('width' => '100%'));
             $tabla_externa =  new HTML_Table($contenedora);
             $tabla_externa->addRow(array(parent::toHtml()),