You are here

function tcpdf_example_permission in TCPDF 7

Implements hook_permission().

File

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

Code

function tcpdf_example_permission() {
  return array(
    'use tcpdf example' => array(
      'title' => t('Use TCPDF Examples'),
      'description' => t('Generate the example pdfs that are provided by TCPDF Example module'),
    ),
  );
}