From 0a6a36623855afe6f0a543115d6aa59916580b8f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Mon, 7 Apr 2003 17:01:33 +0000 Subject: [PATCH] --- HTML/php/Tabla.php | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/HTML/php/Tabla.php b/HTML/php/Tabla.php index 0f7eb70..b38345a 100644 --- a/HTML/php/Tabla.php +++ b/HTML/php/Tabla.php @@ -200,17 +200,29 @@ class Tabla extends HTML_Table { * Devuelve el html de la tabla * * Devuelve el html de la tabla para que sea mostrado. + * Como parametro recibe el indicador de tabla simple. + * Si doble es 0, devuelve el html comun y corriente, si es + * distinto de 0 devuelve una tabla sola + * + * @param int $doble * * @return string Html * * @access public */ - function toHtml () + function toHtml ($doble = 0) { // Agregar la tabla de fondo. - $tabla_externa = new HTML_Table($this->_conf['atributos']['tabla_contenedora']); - $tabla_externa->setCellContents(0,0,parent::toHtml(),$this->_conf['atributos']['celda_comun']); - return $tabla_externa->toHtml(); + if ($doble == 0 ) { + $tabla_externa = new HTML_Table($this->_conf['atributos']['tabla_contenedora']); + $tabla_externa->setCellContents(0,0,parent::toHtml(),$this->_conf['atributos']['celda_comun']); + $result = $tabla_externa->toHtml(); + } + else { + $result = parent::toHtml(); + } + + return $result; } } ?> -- 2.43.0