From 363434e2910ed025fc81935a24d517ca2aea43c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Fri, 6 Feb 2004 16:51:34 +0000 Subject: [PATCH 1/1] A MECON_PDF se le pasa opcionalmente como parametro el nombre que debe tener el archivo que se generara en el display. --- lib/MECON/PDF.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lib/MECON/PDF.php b/lib/MECON/PDF.php index 609e37e..a469ed0 100644 --- a/lib/MECON/PDF.php +++ b/lib/MECON/PDF.php @@ -75,22 +75,31 @@ class MECON_PDF { */ var $_paginas = array(); + /** + * Nombre del archivo resultado para el display. + * @var sting $nombre + * @access private + */ + var $_nombre; + /** * Class constructor. * * @param string $tam Tipo de hoja * @param string $ori Orientacion de las hojas (portrait o landscape). + * @param string $nombre Nombre del archivo PDF. * * @return void * @access public */ - function MECON_PDF($tam = "a4", $ori = "portrait") + function MECON_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 = $this->_config[$tam]; + $this->_nombre = $nombre; } /** @@ -138,7 +147,7 @@ class MECON_PDF { */ function display() { - header("Content-Disposition: filename=Doc.pdf"); + header("Content-Disposition: filename=".$this->_nombre); header("Content-Type: application/pdf"); $temp = $this->toPDF(); header('Content-Length: ' . strlen($temp)); -- 2.43.0