]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Texto.php
Se agrega paginador para arrays.
[mecon/meconlib.git] / lib / MECON / PDF / Texto.php
index 780b5cf07fda9709f9cd998c70a10bd278db8f40..578494814d9e80141777aedb8cc7a237323356cb 100644 (file)
@@ -63,18 +63,28 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido {
      * @access protected
      */
     var $_orientacion;
+
+    /**
+     * Indica si el encabezado debe ir en la nuevas paginas.
+     * @var bool $encabezado
+     * @access protected;
+     */
+    var $_encabezado;
     
     /**
      * Class Constructor.
      *
      * @param string $orientacion Orientacion que tendran las nuevas paginas que
      * esta clase genere.
+     * @param bool $encabezado Indica si las paginas nuevas que genere esta
+     * clase tendran el encabezado de MECON_PDF_Marco.
      *
      * @return void
      * @access public
      */
-    function MECON_PDF_Texto($orientacion = null) {
+    function MECON_PDF_Texto($orientacion = null, $encabezado = true) {
         $this->_orientacion = $orientacion;
+        $this->_encabezado = $encabezado;
     }
 
     /**
@@ -88,7 +98,7 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido {
     function _newPage(&$MARCO) {
         $tmp = ($this->_orientacion) ? $this->_orientacion :
             $MARCO->getOrientation();
-        $MARCO->newPage($MARCO->tamanio, $tmp);               
+        $MARCO->newPage($MARCO->tamanio, $tmp, $this->_encabezado);               
     }
    
     /**
@@ -171,7 +181,12 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido {
             //sean parrafos.
             $c = split ("\n", $c); 
             foreach ($c as $tmp) {
-                $this->_parrafos[] = $tmp;
+                if ($tmp) {
+                    $this->_parrafos[] = $tmp;
+                }
+                else {
+                    $this->_parrafos[] = ' ';
+                }
             }
         }
     }