示例#1
0
 function Footer()
 {
     parent::Footer();
     global $user;
     $date = date("F j, Y:H:i:s A");
     $report_data = $date . '               Report by: ' . strtoupper($user);
     $this->SetY(-20);
     //Arial italic 8
     $this->SetFont('Arial', 'I', 8);
     //Reprt date
     $this->Cell(0);
     $this->Cell(-300, 10, $report_data, 0, 0, 'C', 0);
     $this->Cell(50);
     $this->Cell(0, 10, $this->PageNo(), 0, 0, 'R', 0);
 }
示例#2
0
 public function Footer()
 {
     parent::Footer();
     foreach ($this->listeners as $l) {
         $l->onFooter();
     }
 }
示例#3
0
 function Footer()
 {
     //! @return void
     //! @desc The footer is printed in every page!
     //Position at 1.0 cm from bottom
     parent::Footer();
     $this->SetY(-10);
     //Copyright //especial para esta versão
     $this->SetFont('Arial', 'B', 9);
     $this->SetTextColor(0);
     //Arial italic 9
     $this->SetFont('Arial', 'I', 9);
     //Page number
     //$this->SetFillColor(0,0,0);
     //$this->Cell($this->w-$this->rMargin-$this->lMargin,0.2,'',1,0,'L',1);
     //$this->Cell(0,10,$this->PageNo(),0,0,'R');
     //Return Font to normal
     //$this->SetFont('Arial','',11);
 }
 function Footer()
 {
     $this->SetY(-20);
     $this->Cell(23, 5, "Hora de salida: ", 0, 0);
     $this->Cell(20, 5, "", 1, 0);
     $this->Cell(26, 5, " Hora de llegada: ", 0, 0);
     $this->Cell(20, 5, "", 1, 0);
     $this->Cell(25, 5, " Kms recorridos: ", 0, 0);
     $this->Cell(20, 5, "", 1, 0);
     parent::Footer();
 }