You are here

function print_pdf_tcpdf_theme in Printer, email and PDF versions 7.2

Implements hook_theme().

File

print_pdf/lib_handlers/print_pdf_tcpdf/print_pdf_tcpdf.module, line 35
Generate a PDF for the print_pdf module using the TCPDF library.

Code

function print_pdf_tcpdf_theme() {
  return array(
    'print_pdf_tcpdf_header' => array(
      'variables' => array(
        'pdf' => NULL,
        'html' => '',
        'font' => array(),
      ),
      'file' => 'print_pdf_tcpdf.pages.inc',
    ),
    'print_pdf_tcpdf_page' => array(
      'variables' => array(
        'pdf' => NULL,
      ),
      'file' => 'print_pdf_tcpdf.pages.inc',
    ),
    'print_pdf_tcpdf_content' => array(
      'variables' => array(
        'pdf' => NULL,
        'html' => '',
        'font' => array(),
      ),
      'file' => 'print_pdf_tcpdf.pages.inc',
    ),
    'print_pdf_tcpdf_footer' => array(
      'variables' => array(
        'pdf' => NULL,
        'html' => '',
        'font' => array(),
      ),
      'file' => 'print_pdf_tcpdf.pages.inc',
    ),
    'print_pdf_tcpdf_footer2' => array(
      'variables' => array(
        'pdf' => NULL,
      ),
      'file' => 'print_pdf_tcpdf.pages.inc',
    ),
  );
}