function Footer()
 {
     parent::Footer();
     //Position at 1.5 cm from bottom
     global $user;
     $date = date("F j, Y:H:i:s A");
     $report_data = 'Generated On ' . $date . '                      Report by: ' . strtoupper($user) . '                                         Powered by Wizglobal Kenya Limited';
     $this->SetY(-20);
     //Arial italic 8
     $this->SetFont('Arial', 'I', 8);
     //Reprt date
     $this->Cell(0);
     $this->Cell(-380, 10, $report_data, 0, 0, 'C', 0);
     $this->Cell(50);
     $this->Cell(0, 10, $this->PageNo(), 0, 0, 'R', 0);
 }