noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 30/107: New function PDF:is_fill add document


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

sparkyx pushed a commit to branch master
in repository noalyss.

commit 126395069c9721c3dbe3ebade6f5f548942011fb
Author: Dany De Bontridder <address@hidden>
Date:   Sun Jul 21 17:31:32 2019 +0200

    New function PDF:is_fill
    add documentation
---
 include/lib/pdf.class.php | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/include/lib/pdf.class.php b/include/lib/pdf.class.php
index 90600bd..42efcaa 100644
--- a/include/lib/pdf.class.php
+++ b/include/lib/pdf.class.php
@@ -243,6 +243,10 @@ class PDF 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) 
@@ -252,6 +256,26 @@ class PDF extends TFPDF
             $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;
+    }
+    /**
      *@brief retrieve the client name and quick_code
      *@param $p_jr_id jrn.jr_id
      *@param $p_jrn_type ledger type ACH VEN FIN



reply via email to

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