<?php
namespace Medienreaktor\Products\Utility;

class PDF extends \FPDI {

    public function Header(): void {
        $this->Image('typo3conf/ext/energize/Resources/Public/Images/Logo@2x.png', 145, 10, 50, '', '', '', 'T', false, 300, '', false, false, 0, false, false, false);
    }

    public function Footer(): void {
        $this->SetY(-17);
        $this->SetTextColor(140, 140, 140);
        $this->SetFontSize(8);
        $this->SetFont('itcstonesansstd');

        $this->MultiCell(null, null, 'Helmholz GmbH & Co. KG | Hannberger Weg 2 | 91091 Großenseebach | Germany', 0, 'L', FALSE, 1, 25, 282, TRUE, 0, FALSE, TRUE, 0, 'T', FALSE);
        $this->MultiCell(null, null, 'Phone +49 9135 7380-0 | Fax +49 9135 7380-110 | info@helmholz.de | www.helmholz.de', 0, 'L', FALSE, 1, 25, 286, TRUE, 0, FALSE, TRUE, 0, 'T', FALSE);

        $this->SetFontSize(6);
        $this->MultiCell(null, null, 'Änderungen und Irrtümer vorbehalten. '.date('m-Y'), 0, 'R', FALSE, 1, 25, 282.5, TRUE, 0, FALSE, TRUE, 0, 'T', FALSE);
    }

}
