You are here

function tcpdf_example_theme in TCPDF 8

Same name and namespace in other branches
  1. 7 tcpdf_example/tcpdf_example.module \tcpdf_example_theme()

Implements hook_theme().

File

tcpdf_example/tcpdf_example.module, line 10
Provide examples of using the TCPDF module.

Code

function tcpdf_example_theme($existing, $type, $theme, $path) {
  switch ($type) {
    case 'module':
      return array(
        'tcpdf_example_basic_html' => array(
          'template' => 'tcpdf_example_basic_html',
        ),
      );
      break;
  }
}