From 5fc4d2c060a308c91604bfec802ef67cbcd862e3 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 27 Oct 2003 23:03:38 +0000 Subject: [PATCH] Se agrega nuevo id a addLink(): buscar. --- lib/MECON/HTML/Tabla.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/MECON/HTML/Tabla.php b/lib/MECON/HTML/Tabla.php index 4c8ab0a..b4a7551 100644 --- a/lib/MECON/HTML/Tabla.php +++ b/lib/MECON/HTML/Tabla.php @@ -397,7 +397,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 +429,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. -- 2.43.0