X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/401dd39f39a08f28d116772964f3513b58c0a689..63672c6556e5f9fd83c9621bf2964b2f00612843:/lib/MECON/HTML/Tabla.php diff --git a/lib/MECON/HTML/Tabla.php b/lib/MECON/HTML/Tabla.php index 035e4f4..65512ff 100644 --- a/lib/MECON/HTML/Tabla.php +++ b/lib/MECON/HTML/Tabla.php @@ -30,7 +30,6 @@ require_once 'HTML/Table.php'; * Libreria para le manejo de las tablas de los sistemas de intranet. * */ - class MECON_HTML_Tabla extends HTML_Table { /** @@ -63,7 +62,8 @@ class MECON_HTML_Tabla extends HTML_Table { */ function MECON_HTML_Tabla($attrs = null, $estilo = 'comun') { - $this->_conf = include 'MECON/HTML/Tabla/estilo_'.$estilo.'.php'; // Obtengo los valores particulares de configuracion + // Obtengo los valores particulares de configuracion. + $this->_conf = include(dirname(__FILE__) . '/Tabla/estilo_' . $estilo . '.php'); // Seteo los atributos para la tabla $this->_attrs = $this->_conf['atributos']['tabla_comun']; //Genero el objeto HTML_Table @@ -388,6 +388,15 @@ class MECON_HTML_Tabla extends HTML_Table { return $rta; } + /** + * Obtiene la Cascade Style Sheet para esta tabla. + * + * @return string Path 'web' a la css. + */ + function getCSS() { + return $this->_conf['css']; + } + } ?>