From a1c8efcbb7f11eb6fe6c769186acd99edb0a9562 Mon Sep 17 00:00:00 2001 From: Tolotsoa Date: Mon, 29 Sep 2025 15:19:03 +0300 Subject: [PATCH] feat add footer --- .../PdfHandler/PacemakerAbsentCertificatePdfHandler.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gestion/lib/Service/Certificate/PdfHandler/PacemakerAbsentCertificatePdfHandler.php b/gestion/lib/Service/Certificate/PdfHandler/PacemakerAbsentCertificatePdfHandler.php index 9c69fe5..1caf7f6 100644 --- a/gestion/lib/Service/Certificate/PdfHandler/PacemakerAbsentCertificatePdfHandler.php +++ b/gestion/lib/Service/Certificate/PdfHandler/PacemakerAbsentCertificatePdfHandler.php @@ -68,7 +68,9 @@ class PacemakerAbsentCertificatePdfHandler extends FPDF public function Footer() { - // Footer vide maintenant - signatures déplacées dans le contenu + $this->SetY(-15); + $this->MultiCell(0, 5, utf8_decode(html_entity_decode($this->devisOfDefunt['configuration']->legal_one)), 0, 'C'); + $this->MultiCell(0, 5, utf8_decode(html_entity_decode($this->devisOfDefunt['configuration']->adresse)), 0, 'C'); } public function SetPacemakerCertificateData(array $devisOfDefunt, $logo = null, $signatureImageExist = false, $tamponImageExist = false)