<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
-------------------------------------------------------------------------------
- Ministerio de EconomÃa
- meconlib
+ mlib
-------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
$Id$
-----------------------------------------------------------------------------*/
-require_once 'MECON/PDF/Contenido.php';
+require_once 'MLIB/PDF/Contenido.php';
/**
* Libreria que permite agregar una tabla a un pdf.
*/
-class MECON_PDF_Tabla extends MECON_PDF_Contenido {
+class MLIB_PDF_Tabla extends MLIB_PDF_Contenido {
/**
* Configuracion
var $_config;
/**
- * Objeto MECON_HTML_Tabla.
- * @var &Object $tabla MECON_HTML_Tabla
+ * Objeto MLIB_HTML_Tabla.
+ * @var &Object $tabla MLIB_HTML_Tabla
* @access protected
*/
var $_tabla;
/**
- * Objeto MECON_PDF_Marco
+ * Objeto MLIB_PDF_Marco
* @var &Object $marco
* @access protected
*/
/**
* Class Constructor
*
- * @param &Object $TABLA MECON_HTML_Tabla
+ * @param &Object $TABLA MLIB_HTML_Tabla
* @param string $orientacion Orientacion que deben tener las nuevas paginas
* que genere la tabla.
*
* @return void
* @access public
*/
- function MECON_PDF_Tabla($TABLA, $orientacion = null, $encabezado = true) {
+ function MLIB_PDF_Tabla($TABLA, $orientacion = null, $encabezado = true) {
$this->_tabla = $TABLA;
$this->_orientacion = $orientacion;
- $this->_config = include 'MECON/PDF/Tabla/medidas.php';
+ $this->_config = include 'MLIB/PDF/Tabla/medidas.php';
$this->_encabezado = $encabezado;
}
* Funcion que agrega el contenido de la tabla que se este utilizando al
* PDF.
*
- * @param &Object $MARCO MECON_PDF_Marco
+ * @param &Object $MARCO MLIB_PDF_Marco
*
* @return void
* @access public