//
// REPUBBLICA ITALIANA SERVIZIO FITOSANITARIO ITALIANO |
//
//
//  |
//
//
// | Regione Sicilia |
//
//
//
// ASSESSORATO REGIONALE DELL\'AGRICOLTURA DELLO SVILUPPO RURALE E DELLA PESCA MEDITERRANEA
// Dipartimento Regionale Dell\'Agricoltura
// 4. Servizio Fitosanitario Regionale e Lotta alla Contraffazione
// |
//
// ';
//
// $this->writeHTML($htmlHeader, true, false, true, false, '');
}
// Page footer
public function Footer() {
}
}
class PDF_DOMANDA extends TCPDF{
//Page header
public function Header() {
}
// Page footer
public function Footer() {
}
}
class PdfMandato extends TCPDF {
private $customFooterText = "";
//Page header
public function Header() {
}
public function setCustomFooterText($customFooterText) {
$this->customFooterText = $customFooterText;
}
// Page footer
public function Footer() {
$this->Cell(0, 10, $this->customFooterText, 0, false, 'C', 0, '', 0, false, 'T', 'M');
}
}