]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Tabla.php
Le faltaba un reuiqre html_link a tabla
[mecon/meconlib.git] / lib / MECON / HTML / Tabla.php
index f6288fe58c061cbf3d759e59700f2f8748d392c5..50eb62027d14c5ae19ba423f327c0271f1023385 100644 (file)
@@ -26,6 +26,7 @@ $Id$
 
 require_once 'HTML/Table.php';
 require_once 'MECON/HTML/Image.php';
+require_once 'MECON/HTML/Link.php';
 
 /**
  * Libreria para le manejo de las tablas de los sistemas de intranet.
@@ -72,7 +73,7 @@ class MECON_HTML_Tabla extends HTML_Table {
      * seteados por default segun el archivo de configuracion.
      * Ademas puede recibir la indicacion de algun estilo en particular.
      *
-     * @param mixed $atributos Atributos diferentes a los estandares para la tabla
+     * @param mixed $attrs Atributos diferentes a los estandares para la tabla
      * @param string $estilo Tipo de tabla
      * 
      * @access public
@@ -140,15 +141,7 @@ class MECON_HTML_Tabla extends HTML_Table {
             $tabla_externa = new HTML_Table(array('width'=>'100%','border'=>0));
         }
         // Si tiene cabecera, la agrega.
-        if ($this->_cabecera) {
-            $tabla_externa->addRow($this->_cabecera, array(
-                'valign' => 'middle',
-                'width'  => '33%',
-            ));
-            $tabla_externa->updateCellAttributes(0, 0, array('align' => 'left'));
-            $tabla_externa->updateCellAttributes(0, 1, array('align' => 'center'));
-            $tabla_externa->updateCellAttributes(0, 2, array('align' => 'right'));
-        }
+        $this->_addSpecialRow($this->_cabecera, $tabla_externa);
         // Si tiene cabecera o pie, agrega la tabla original.
         if ($this->_cabecera or $this->_pie) {
             //$id = $tabla_externa->addRow($result);
@@ -160,16 +153,35 @@ class MECON_HTML_Tabla extends HTML_Table {
             ));
         }
         // Si tiene pie, lo agrega.
-        if ($this->_pie) {
-            $id = $tabla_externa->addRow($this->_pie, array(
+        $this->_addSpecialRow($this->_pie, $tabla_externa);
+        return ($this->_cabecera or $this->_pie) ? $tabla_externa->toHtml() : $result;
+    }
+
+    function _addSpecialRow($array, &$tabla) {
+        if ($array) {
+            $row = array();
+            foreach ($array as $key => $val) {
+                $row[$key] = $val ? $val : ' ';
+            }
+            $id = $tabla->addRow($row, array(
                 'valign' => 'middle',
-                'width' => '33%',
+                'width'  => '33%',
             ));
-            $tabla_externa->updateCellAttributes($id, 0, array('align' => 'left'));
-            $tabla_externa->updateCellAttributes($id, 1, array('align' => 'center'));
-            $tabla_externa->updateCellAttributes($id, 2, array('align' => 'right'));
+            // Si no hay celda central, hace colspan.
+            if ($array[0] and !$array[1]) {
+                $tabla->updateCellAttributes($id, 0, array(
+                    'colspan' => 2,
+                    'width' => '67%'));
+            /* } XXX se complica hacer el colspan para atras:
+              elseif ($array[2] and !$array[1]) {
+                $tabla->updateCellAttributes($id, 1, array(
+                    'colspan' => 2,
+                    'width' => '67%')); */
+            }
+            $tabla->updateCellAttributes($id, 0, array('align' => 'left'));
+            $tabla->updateCellAttributes($id, 1, array('align' => 'center'));
+            $tabla->updateCellAttributes($id, 2, array('align' => 'right'));
         }
-        return ($this->_cabecera or $this->_pie) ? $tabla_externa->toHtml() : $result;
     }
 
     /**
@@ -297,7 +309,7 @@ class MECON_HTML_Tabla extends HTML_Table {
      * Setea la cabecera.
      * Ejemplo:
      * @code
-     * $tabla->setCabecera(array('Hola', ' ', 'mundo!'));
+     * $tabla->setCabecera(array('Hola', '', 'mundo!'));
      * @endcode
      *
      * @param array $cabecera Array de 3 elementos, que son la celda izquierda,
@@ -325,7 +337,7 @@ class MECON_HTML_Tabla extends HTML_Table {
      */
     function updateCabecera($cabecera, $lugar) {
         if (!$this->_cabecera) {
-            $this->_cabecera = array(' ', ' ', ' ');
+            $this->_cabecera = array('', '', '');
         }
         if ($lugar == 'izquierda') {
             $this->_cabecera[0] = $cabecera;
@@ -365,7 +377,7 @@ class MECON_HTML_Tabla extends HTML_Table {
      */
     function updatePie($pie, $lugar) {
         if (!$this->_pie) {
-            $this->_pie = array(' ', ' ', ' ');
+            $this->_pie = array('', '', '');
         }
         if ($lugar == 'izquierda') {
             $this->_pie[0] = $pie;
@@ -397,7 +409,7 @@ class MECON_HTML_Tabla extends HTML_Table {
      * @endcode
      *
      * @param string $id Identificador del link predefinido. Puede ser 'volver',
-     *                   'nuevo', 'nuevos', 'anterior' y 'siguiente'.
+     *                   'nuevo', 'nuevos', 'buscar', 'anterior' y 'siguiente'.
      * @param MECON_HTML_Link $link Link a usar. Si no tiene contenidos, se pone
      *                              uno por defecto. Si es null, se pone como
      *                              link la página actual.
@@ -429,6 +441,15 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $link->addContents($img);
                 $this->updateCabecera($link, 'derecha');
                 break;
+            case 'buscar':
+                $img = new MECON_HTML_Image('/MECON/images/general_lupa', 'Q');
+                // Si no tiene titulo, le pone titulo por defecto.
+                if (!$link->getContents()) {
+                    $link->setContents('Buscar');
+                }
+                $link->addContents($img);
+                $this->updateCabecera($link, 'derecha');
+                break;
             case 'siguiente':
                 $img = new MECON_HTML_Image('/MECON/images/general_posterior', '-<');
                 // Si no tiene titulo, le pone titulo por defecto.