//
// 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');
}
}
class PdfRichiestaIntegrazione extends TCPDF {
private $customFooterText = "";
//Page header
public function Header() {
}
public function setCustomFooterText($customFooterText) {
$this->customFooterText = $customFooterText;
}
// Page footer
public function Footer()
{
$this->SetY(-18);
$this->SetDrawColor(0, 0, 0);
$this->Line(15, $this->GetY(), 195, $this->GetY());
$this->Ln(2);
$this->SetFont('helvetica', '', 7);
$this->Cell(
0,
5,
'Servizio 1 - Autotrasporto Persone Trasporto Regionale Aereo e Marittimo - Dirigente Generale: arch. Salvatore Lizzio',
0,
0,
'C'
);
}
}