You are here

function print_epub_permission in Printer, email and PDF versions 7.2

Implements hook_permission().

File

print_epub/print_epub.module, line 32
Displays Printer-friendly versions of Drupal pages.

Code

function print_epub_permission() {
  return array(
    'access EPUB version' => array(
      'title' => t('Access the EPUB version'),
      'description' => t('View the EPUB versions and the links to them in the original pages.'),
    ),
  );
}