X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/ab204ec4981b5edf4bc33e01db11d293946d0220..2ee40a32ef0b52d7b33d5e28614e76222925dfab:/HTML/php/Tabla.php diff --git a/HTML/php/Tabla.php b/HTML/php/Tabla.php index 21acb3a..ce736c5 100644 --- a/HTML/php/Tabla.php +++ b/HTML/php/Tabla.php @@ -75,6 +75,15 @@ class Tabla extends HTML_Table { if (isset($tmp['width'])) { $this->_atribTabla['width'] = $tmp['width']; } + if (isset($tmp['bgcolor'])) { + $this->_atribTabla['bgcolor'] = $tmp['bgcolor']; + } + if (isset($tmp['cellspacing'])) { + $this->_atribTabla['cellspacing'] = $tmp['cellspacing']; + } + if (isset($tmp['cellpadding'])) { + $this->_atribTabla['cellpadding'] = $tmp['cellpadding']; + } } $this->HTML_Table($this->_atribTabla); //Modifico los atributos de todas las tablas @@ -180,6 +189,18 @@ class Tabla extends HTML_Table { } /** + * Setea una columna como del tipo titulo + * + * @param int $columna + * + * @access public + */ + function setColTitulo ($columna) + { + return $this->updateColAttributes($columna,$this->_conf['atributos']['celda_titulo']); + } + + /** * Alinea una columna entera * * @param int $columna @@ -192,6 +213,19 @@ class Tabla extends HTML_Table { return $this->updateColAttributes($columna,'align="'.$valor.'"'); } + /** + * Cambia el tamanio de una columna entera + * + * @param int $columna + * @param strin $valor + * + * @access public + */ + function setColWidth ($columna, $valor) + { + return $this->updateColAttributes($columna,'width="'.$valor.'"'); + } + /** * Cambia el color de fondo de una celda *