]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF.php
Se agrega paginador para arrays.
[mecon/meconlib.git] / lib / MECON / PDF.php
index e4f1b3c21cf6e7dc7cfe15abdd7eb8c3384ce2e9..a469ed0c985a2c145daf4d0de3fee305d1b1ea03 100644 (file)
@@ -75,21 +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;
     }
 
     /**
@@ -137,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));
@@ -321,7 +331,15 @@ class MECON_PDF {
      * @access public
      */
     function wrapLine($texto, $l_max, $attr) {
-        return $this->_pdf->wrap_line ($texto, $l_max, $attr);
+        //El if lo estoy haciendo porque en la funcion wordwrap de la libreria
+        //externa no tienen en cuenta que te pueden pasar un texto vacio a
+        //wrapear -> Amerita un mail a los autores.
+        if ($texto) {
+            return $this->_pdf->wrap_line ($texto, $l_max, $attr);
+        }
+        else {
+            return '';
+        }
     }
 
     /**
@@ -335,7 +353,15 @@ class MECON_PDF {
      * @access public
      */
     function wordWrap($texto, $l_max, $attr) {
-        return $this->_pdf->word_wrap ($texto, $l_max, $attr);
+        //El if lo estoy haciendo porque en la funcion wordwrap de la libreria
+        //externa no tienen en cuenta que te pueden pasar un texto vacio a
+        //wrapear -> Amerita un mail a los autores.
+        if ($texto) {
+            return $this->_pdf->word_wrap ($texto, $l_max, $attr);
+        }
+        else {
+            return array();
+        }
     }
     
     /**