MYPDF::Footer PHP Method

    public function Footer()
    {
        global $kga, $customerData, $projectData;
        // Position at 1.5 cm from bottom
        $this->SetY(-15);
        // customer data
        //$this->SetFont('freesans', '', 8); // Set font
        //$this->Cell(80, 10, $customerData['name'].' ('.$projectData['pct_name'].')', 0, 0, 'L');
        // Page number
        $this->SetFont('freesans', 'I', 8);
        // Set font
        $this->Cell(30, 10, $kga['lang']['export_extension']['page'] . ' ' . $this->getAliasNumPage() . '/' . $this->getAliasNbPages(), 0, 0, 'C');
        //Date
        $this->SetFont('freesans', '', 8);
        // Set font
        $this->Cell(0, 10, date('d.m.Y H:i:s', $this->print_time), 0, 0, 'R');
    }