_locale = $locale; } public function Header() { if ($this->_tplIdx === null) { // Template basierend auf Locale wählen $availableTemplates = config('localization.availableTemplates', ['de']); $locale = in_array($this->_locale, $availableTemplates) ? $this->_locale : 'de'; $this->setSourceFile('./pdf/mivita_template_contract_'.$locale.'.pdf'); } $this->_tplIdx = $this->importPage($this->_site++); $this->useTemplate($this->_tplIdx); } public function Footer() {} // end of footer }