function print_perm in Printer, email and PDF versions 5.4
Same name and namespace in other branches
- 5.2 print.module \print_perm()
- 5.3 print.module \print_perm()
- 6 print.module \print_perm()
- 5.x print.module \print_perm()
Implementation of hook_perm().
File
- ./
print.module, line 89 - Displays Printer-friendly versions of Drupal pages.
Code
function print_perm() {
return array(
'access print',
'administer print',
'node-specific print configuration',
'use PHP for link visibility',
);
}