You are here

function print_ui_permission in Printer, email and PDF versions 7.2

Implements hook_permission().

File

print_ui/print_ui.module, line 30
Printer-friendly pages User Interface module.

Code

function print_ui_permission() {
  return array(
    'node-specific print configuration' => array(
      'title' => t('Node-specific configuration'),
      'description' => t('Enable access to the per-node settings.'),
    ),
  );
}