You are here

class PrintTCPDF in Printer, email and PDF versions 6

Same name in this branch
  1. 6 print_pdf/print_pdf.class_php4.inc \PrintTCPDF
  2. 6 print_pdf/print_pdf.class.inc \PrintTCPDF
Same name and namespace in other branches
  1. 5.4 print_pdf/print_pdf.class_php4.inc \PrintTCPDF
  2. 5.4 print_pdf/print_pdf.class.inc \PrintTCPDF
  3. 5.3 print_pdf/print_pdf.class_php4.inc \PrintTCPDF
  4. 5.3 print_pdf/print_pdf.class.inc \PrintTCPDF
  5. 7.2 print_pdf/lib_handlers/print_pdf_tcpdf/print_pdf_tcpdf.class.inc \PrintTCPDF
  6. 7 print_pdf/print_pdf.class.inc \PrintTCPDF
  7. 5.x print_pdf/print_pdf.class_php4.inc \PrintTCPDF
  8. 5.x print_pdf/print_pdf.class.inc \PrintTCPDF

@file Extend the TCPDF class to be able to customize the Footer (PHP4 version)

This file is included by the _print_pdf_tcpdf function when the current PHP_VERSION is less than 5.0.0

Hierarchy

Expanded class hierarchy of PrintTCPDF

Related topics

File

print_pdf/print_pdf.class_php4.inc, line 13
Extend the TCPDF class to be able to customize the Footer (PHP4 version)

View source
class PrintTCPDF extends TCPDF {
  var $footer;

  // Page footer data
  function SetFooterData($arg = '') {
    $this->footer = $arg;
  }

  // Page footer
  function Footer() {
    $this = theme('print_pdf_tcpdf_footer2', $this);
  }

}

Members