X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/71acf4950362871b3ad6bc168d08db422edf0509..d374755a39b0fc94d14a25590acea0a3f5ce6633:/lib/MECON/HTML/Tabla.php?ds=inline diff --git a/lib/MECON/HTML/Tabla.php b/lib/MECON/HTML/Tabla.php index ca72590..7267f78 100644 --- a/lib/MECON/HTML/Tabla.php +++ b/lib/MECON/HTML/Tabla.php @@ -35,7 +35,7 @@ require_once 'HTML/Table.php'; * @author $Author$ */ -class Tabla extends HTML_Table { +class MECON_HTML_Tabla extends HTML_Table { /** * Valores de Configuracion particular @@ -58,14 +58,15 @@ class Tabla extends HTML_Table { * quieren dar a la tabla en cuestion. Estos atributos estan * seteados por default segun el archivo de configuracion. * - * @param $atributos Atributos diferentes a los estandares para la + * @param mixed $atributos Atributos diferentes a los estandares para la * tabla + * @param string $estilo Tipo de tabla. (comun, servicio) * * @access public */ - function Tabla($attrs = null) + function MECON_HTML_Tabla($attrs = null, $estilo = 'comun') { - $this->_conf = include 'MECON/HTML/Tabla/conf_Tabla.php'; // Obtengo los valores particulares de configuracion + $this->_conf = include 'MECON/HTML/Tabla/estilo_'.$estilo.'.php'; // Obtengo los valores particulares de configuracion // Seteo los atributos para la tabla $this->_attrs = $this->_conf['atributos']['tabla_comun']; //Genero el objeto HTML_Table @@ -376,13 +377,13 @@ class Tabla extends HTML_Table { case 'border': case 'cellspacing': case 'cellpadding': + case 'nowrap': $rta[$attr] = $val; break; case 'spacing': case 'padding': $rta["cell$attr"] = $val; break; - case 'nowrap': case 'th': $rta[$attr] = ''; break;