X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/834bee1cf2c5bd122b3e941c70b5c2f03ee80a27..d7bed7845acae13f729692fe9261ebe7c9e51012:/lib/MLIB/PDF.php?ds=inline diff --git a/lib/MLIB/PDF.php b/lib/MLIB/PDF.php index a5e85e7..eb6e35f 100644 --- a/lib/MLIB/PDF.php +++ b/lib/MLIB/PDF.php @@ -1,16 +1,15 @@ $Id$ -----------------------------------------------------------------------------*/ -require_once 'MECON/PDF/external/phppdflib.class.php'; +require_once 'MLIB/PDF/external/phppdflib.class.php'; /** * Liberia base para el manejo de pdf's. */ -class MECON_PDF { +class MLIB_PDF { /** * Orientacion (portrait o landscape). @@ -92,12 +91,12 @@ class MECON_PDF { * @return void * @access public */ - function MECON_PDF($tam = "a4", $ori = "portrait", $nombre = "Doc.pdf") + function MLIB_PDF($tam = "a4", $ori = "portrait", $nombre = "Doc.pdf") { setlocale (LC_ALL, 'en_US'); $this->orientacion = $ori; $this->_pdf = new pdffile; - $this->_config = include 'MECON/PDF/medidas.php'; + $this->_config = include 'MLIB/PDF/medidas.php'; $this->_config = $this->_config[$tam]; $this->_nombre = $nombre; }