*/
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;
}
/**
*/
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));