noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 56/107: New function PDF_Core:is_fill add doc


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 56/107: New function PDF_Core:is_fill add documentation
Date: Mon, 26 Aug 2019 10:31:57 -0400 (EDT)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 660aed7957ff77211992ba08a1990600f6c2f66f
Author: Dany De Bontridder <address@hidden>
Date:   Mon Jul 29 11:07:55 2019 +0200

    New function PDF_Core:is_fill
    add documentation
---
 include/lib/pdf_core.class.php | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/include/lib/pdf_core.class.php b/include/lib/pdf_core.class.php
index 805bd87..91c7672 100644
--- a/include/lib/pdf_core.class.php
+++ b/include/lib/pdf_core.class.php
@@ -211,6 +211,11 @@ class PDF_Core extends TFPDF
         $this->add_cell(new Cellule($w,$h,$txt,$border,0,$align,$fill,'','M'));
 
     }
+    /**
+     * Print all the cell stored and call Ln (new line)
+     * @param int $p_step
+     */
+
     function line_new($p_step=null){
             $this->print_row();
            if ( $this->bigger==0) 
@@ -219,6 +224,27 @@ class PDF_Core extends TFPDF
                 parent::Ln($this->bigger);
             $this->bigger=0;
     }
+       /**
+     * If the step is even then return 1 and set the backgroup color to blue , 
otherwise
+     * returns 0, and set the background color to white
+     * It is use to compute alternated  colored row , it the parameter fill in 
write_cell and 
+     * cell
+     * @see PDF:write_cell
+     * @see TPDF:cell
+     * 
+     */
+    function is_fill($p_step)
+    {
+        if ($p_step % 2 == 0) {
+            $pdf->SetFillColor(220, 221, 255);
+            $fill = 1;
+        } else {
+            $pdf->SetFillColor(0, 0, 0);
+            $fill = 0;
+        }
+        return $p_step;
+    }
+
 
 
 }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]