]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se agrega nuevo id a addLink(): buscar.
authorLeandro Lucarella <llucax@gmail.com>
Mon, 27 Oct 2003 23:03:38 +0000 (23:03 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 27 Oct 2003 23:03:38 +0000 (23:03 +0000)
lib/MECON/HTML/Tabla.php

index 4c8ab0aa22740cfb05cc94e8b7a3c01146fdbb50..b4a7551e97e765a4f11d056e3b906619540b5d6f 100644 (file)
@@ -397,7 +397,7 @@ class MECON_HTML_Tabla extends HTML_Table {
      * @endcode
      *
      * @param string $id Identificador del link predefinido. Puede ser 'volver',
      * @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.
      * @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 +429,15 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $link->addContents($img);
                 $this->updateCabecera($link, 'derecha');
                 break;
                 $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', '-&lt;');
                 // Si no tiene titulo, le pone titulo por defecto.
             case 'siguiente':
                 $img = new MECON_HTML_Image('/MECON/images/general_posterior', '-&lt;');
                 // Si no tiene titulo, le pone titulo por defecto.