This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

20
modules/templates/e5/header.php Executable file
View File

@@ -0,0 +1,20 @@
<?
error_reporting(0);
if(!$this->blnShowHeader) return;
if($this->edt->show_header_on_all_pages == 0 && $this->page > 1) return;
//from address
$this->SetFont('arialpl', '', 8);
$this->SetXY($this->lMargin,$this->tMargin+2);
//$this->MultiCell(100,3.15,$this->edt->header_text.'
//'.translate('LBL_PDF_NIP',$module_t).': '.$nip,0,'L');
//$this->MultiCell(100,4,"Wystawca:\n".$this->edt->header_text,0,'L');
//logo
//$this->MultiCell(80,7,$this->edt->logo_path."mmm",0,'C');
if(isset($this->edt->logo_path) && $this->edt->logo_path != '' && file_exists($this->edt->logo_path)){
$this->Image($this->edt->logo_path,$this->lMargin,$this->tMargin+5,0,12.3);
}
?>