From: Leandro Lucarella Date: Thu, 16 Oct 2003 21:37:13 +0000 (+0000) Subject: Se agrega metodo addLink(). X-Git-Tag: svn_import~231 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/0768b097733f20adc97c414a107edaf0e469d237?ds=sidebyside Se agrega metodo addLink(). --- diff --git a/lib/MECON/HTML/Tabla.php b/lib/MECON/HTML/Tabla.php index 821a40e..75505e4 100644 --- a/lib/MECON/HTML/Tabla.php +++ b/lib/MECON/HTML/Tabla.php @@ -25,6 +25,7 @@ $Id$ -----------------------------------------------------------------------------*/ require_once 'HTML/Table.php'; +require_once 'MECON/HTML/Image.php'; /** * Libreria para le manejo de las tablas de los sistemas de intranet. @@ -520,6 +521,76 @@ class MECON_HTML_Tabla extends HTML_Table { } } + /** + * Agrega un link predefinido a la cabecera o pie de la tabla. + * Ejemplo: + * @code + * $tabla->addLink('nuevo'); + * $tabla->addLink('volver', new MECON_HTML_Link('atras.php')); + * $tabla->addLink('anterior', new MECON_HTML_Link('previo.php', 'Persona Anterior')); + * $tabla->addLink('siguiente', new MECON_HTML_Link('previo.php', 'Siguiente persona', array('pers' => 'prox'))); + * @endcode + * + * @param string $id Identificador del link predefinido. Puede ser 'volver', + * 'nuevo', 'nuevos', '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. + * + */ + function addLink($id, $link = null) { + if (!$link) { + $link = new MECON_HTML_Link($_SERVER['PHP_SELF'], ''); + } + switch ($id) { + case 'nuevo': + $img = new MECON_HTML_Image('/MECON/images/general_nuevo', '-<'); + // Si no tiene titulo, le pone titulo por defecto. + if (!$link->getContents()) { + $link->setContents('Nuevo'); + } + $link->addContents($img); + $this->updateCabecera($link, 'derecha'); + break; + case 'nuevos': + $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', '-<'); + // Si no tiene titulo, le pone titulo por defecto. + if (!$link->getContents()) { + $link->setContents('Nuevos'); + } + $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. + if (!$link->getContents()) { + $link->setContents('Siguiente'); + } + $link->addContents($img); + $this->updatePie($link, 'derecha'); + break; + case 'volver': + $img = new MECON_HTML_Image('/MECON/images/general_anterior', '>-'); + // Si no tiene titulo, le pone titulo por defecto. + $cont = $link->getContents() ? $link->getContents() : 'Volver'; + $link->setContents($img); + $link->addContents($cont); + $this->updateCabecera($link, 'izquierda'); + break; + case 'anterior': + $img = new MECON_HTML_Image('/MECON/images/general_anterior', '>-'); + // Si no tiene titulo, le pone titulo por defecto. + $cont = $link->getContents() ? $link->getContents() : 'Anterior'; + $link->setContents($img); + $link->addContents($cont); + $this->updatePie($link, 'izquierda'); + break; + default: + $this->raiseError("No hay un link predefinido llamado '$id'."); + } + } + } ?>