Beispiel #1
0
 public function __construct($devolutiveReport, $devolutiveRow, $tipoPDF = null)
 {
     parent::__construct($devolutiveReport, $devolutiveRow);
     $this->tipoPDF = $tipoPDF;
     if (!$this->isCoverPage()) {
         $this->create();
     }
 }
 protected function writeFormatted($text, $bold = false)
 {
     if ($bold) {
         $this->setFontToBold();
     } else {
         $this->setFontToNormal();
     }
     parent::writeWithUTF8(0.6, $text);
 }
Beispiel #3
0
 public function __construct($devolutiveReport, $tipoPDF = null)
 {
     parent::__construct($devolutiveReport);
     $this->tipoPDF = $tipoPDF;
     $this->create();
 }
Beispiel #4
0
 public function __construct($devolutiveReport, $devolutiveRow)
 {
     parent::__construct($devolutiveReport, $devolutiveRow);
     $this->create();
 }
 public function __construct($devolutiveReport, $devolutiveRow)
 {
     parent::__construct($devolutiveReport, $devolutiveRow);
     $this->initializeInstanceVariables();
 }
Beispiel #6
0
 protected function writeFormatted($text)
 {
     parent::writeWithUTF8(0.6, $text);
 }