You are here

function pdf_export_permission in PDF Export 7

Implements hook_permission().

File

./pdf_export.module, line 44
PDF Export module.

Code

function pdf_export_permission() {
  return array(
    'pdf export' => array(
      'title' => t('PDF Export'),
      'description' => t('Perform the PDF Export render and download.'),
    ),
    'administer pdf export' => array(
      'title' => t('Administer PDF Export'),
      'description' => t('Configure PDF Export.'),
    ),
  );
}