X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/67d328b236b5531e94572af215772303e022bcfd..1aa774a935f76496935ec5b00c00dcef4cd7288e:/lib/MECON/PDF/Marco.php?ds=sidebyside diff --git a/lib/MECON/PDF/Marco.php b/lib/MECON/PDF/Marco.php index 79705ee..610b98d 100644 --- a/lib/MECON/PDF/Marco.php +++ b/lib/MECON/PDF/Marco.php @@ -268,8 +268,10 @@ class MECON_PDF_Marco extends MECON_PDF { function _addDate() { $conf = $this->_config['encabezado']; if ($this->fecha) { - //@TODO Ver si es un objeto DATE - if ($this->fecha === true) { + if (is_a($this->fecha, 'Date')) { + $this->fecha = $this->fecha->format("%d/%m/%Y"); + } + elseif ($this->fecha === true) { $this->fecha = date("d/m/Y"); } $tmp = $this->strlen($this->fecha, $conf['fecha']); @@ -298,6 +300,16 @@ class MECON_PDF_Marco extends MECON_PDF { $conf['linea2']['Xf'], $conf['linea2']['Yf'], '', null, $this->orientacion); } + + /* + * Funcion que obtiene el ancho de la pagina + * + * @return ancho de la pagina + * @access public + */ + function getWidth() { + return parent::getWidth($this->orientacion); + } /** * Funcion que permite agregar el titulo a una pagina. @@ -441,4 +453,4 @@ class MECON_PDF_Marco extends MECON_PDF { $this->_contenido[] = $contenido; } } -?> \ No newline at end of file +?>