From: cajus Date: Tue, 25 Aug 2009 13:15:09 +0000 (+0000) Subject: Added missing class X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8165296535af2dfd24b40bd985ad7d85a0a3140c;p=gosa.git Added missing class git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14133 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/exporter/class_PDF.inc b/gosa-core/include/exporter/class_PDF.inc new file mode 100644 index 000000000..c6b6977ce --- /dev/null +++ b/gosa-core/include/exporter/class_PDF.inc @@ -0,0 +1,29 @@ +headline= $headline; + } + + + function Header() + { + $this->SetFont('Helvetica','B',10); + $this->Cell(0, 0, $this->headline, 0, 0, 'L'); + $this->Ln(5); + } + + function Footer() + { + $this->SetY(-15); + $this->SetFont('Helvetica','I',8); + $this->Cell(0,10, _("Page")." ".$this->PageNo().'/{nb}',0,0,'C'); + } + +} + +?>