class PrintTCPDF in Printer, email and PDF versions 7.2
Same name and namespace in other branches
- 5.4 print_pdf/print_pdf.class_php4.inc \PrintTCPDF
- 5.4 print_pdf/print_pdf.class.inc \PrintTCPDF
- 5.3 print_pdf/print_pdf.class_php4.inc \PrintTCPDF
- 5.3 print_pdf/print_pdf.class.inc \PrintTCPDF
- 6 print_pdf/print_pdf.class_php4.inc \PrintTCPDF
- 6 print_pdf/print_pdf.class.inc \PrintTCPDF
- 7 print_pdf/print_pdf.class.inc \PrintTCPDF
- 5.x print_pdf/print_pdf.class_php4.inc \PrintTCPDF
- 5.x print_pdf/print_pdf.class.inc \PrintTCPDF
@file Extend the TCPDF class to be able to customize the Footer.
This file is included by the _print_pdf_tcpdf function.
Hierarchy
- class \PrintTCPDF extends \TCPDF
Expanded class hierarchy of PrintTCPDF
Related topics
File
- print_pdf/
lib_handlers/ print_pdf_tcpdf/ print_pdf_tcpdf.class.inc, line 12 - Extend the TCPDF class to be able to customize the Footer.
View source
class PrintTCPDF extends TCPDF {
public $footer;
/**
* Display invisible link at the bottom of all pages.
*
* @param string $tcpdflink
* TCPDF link.
*/
public function setTcpdfLink($tcpdflink) {
$this->tcpdflink = $tcpdflink;
}
/**
* Page footer data.
*
* @param string $arg
* Footer contents.
*/
public function setFooterContent($arg = '') {
$this->footer = $arg;
}
/**
* Page footer.
*/
public function Footer() {
theme('print_pdf_tcpdf_footer2', array(
'pdf' => $this,
));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PrintTCPDF:: |
public | property | ||
PrintTCPDF:: |
public | function | Page footer. | |
PrintTCPDF:: |
public | function | Page footer data. | |
PrintTCPDF:: |
public | function | Display invisible link at the bottom of all pages. |