X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/8a3dcc22484e01a06a0576cd47c88d9e99e7da77..029e1daa627ad332edd64bba79f5415fcaf1407d:/topdf.php diff --git a/topdf.php b/topdf.php index 7aed32d7..3f0a6dc7 100644 --- a/topdf.php +++ b/topdf.php @@ -309,6 +309,11 @@ if ($totals_only) { $html .= ''; $html .= ''; } + +// Output footer. +if (!defined('REPORT_FOOTER') || !(REPORT_FOOTER == false)) // By default we print it unless explicitely defined as false. + $html .= '

'.$i18n->getKey('form.mail.footer').'

'; + // By this time we have html ready. // Determine title for report. @@ -328,7 +333,7 @@ header('Content-Disposition: attachment; filename="timesheet.pdf"'); // Beginning of TCPDF code here. // Extend TCPDF class so that we can use custom header and footer. -class MyyPDF extends TCPDF { +class ttPDF extends TCPDF { public $image_file = 'images/tt_logo.png'; // Image file for the logo in header. public $page_word = 'Page'; // Localized "Page" word in footer, ex: Page 1/2. @@ -361,7 +366,7 @@ class MyyPDF extends TCPDF { } // Create new PDF document. -$pdf = new MyyPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); +$pdf = new ttPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); // If custom logo file exists - set it. if (file_exists('images/'.$user->team_id.'.png')) @@ -402,4 +407,3 @@ $pdf->writeHTML($html, true, false, false, false, ''); $pdf->Output('timesheet.pdf', 'D'); // D is for downloads. // End of of TCPDF code. -?> \ No newline at end of file