bigger=0; parent::__construct($p_cn,'L', $unit, $format); date_default_timezone_set ('Europe/Paris'); $this->AddFont('DejaVu','','DejaVuSans.ttf',true); $this->AddFont('DejaVu','B','DejaVuSans-Bold.ttf',true); $this->AddFont('DejaVu','BI','DejaVuSans-BoldOblique.ttf',true); $this->AddFont('DejaVuCond','','DejaVuSansCondensed.ttf',true); $this->AddFont('DejaVuCond','B','DejaVuSansCondensed-Bold.ttf',true); $this->AddFont('DejaVuCond','I','DejaVuSansCondensed-Oblique.ttf',true); $this->cn = $p_cn; $this->own = new Noalyss_Parameter_Folder($this->cn); $this->soc = $this->own->MY_NAME; $this->date = date('d.m.Y'); } function Header() { //Arial bold 12 $this->SetFont('DejaVu', 'B', 10); //Title $this->Cell(0,10,$this->dossier, 'B', 0, 'C'); //Line break $this->Ln(20); } function Footer() { //Position at 2 cm from bottom $this->SetY(-20); //Arial italic 8 $this->SetFont('DejaVuCond', 'I', 8); //Page number $this->Cell(0,8,'Date '.$this->date." - Page ".$this->PageNo().'/{nb}',0,0,'C'); $this->Ln(3); // Created by NOALYSS $this->Cell(0,8,'Created by NOALYSS, online on https://www.noalyss.eu',0,0,'C',false,'https://www.noalyss.eu'); } }