function print_controller in Printer, email and PDF versions 5
Same name and namespace in other branches
- 5.4 print.pages.inc \print_controller()
- 5.2 print.module \print_controller()
- 5.3 print.pages.inc \print_controller()
- 6 print.pages.inc \print_controller()
- 7.2 print.pages.inc \print_controller()
- 7 print.pages.inc \print_controller()
- 5.x print.pages.inc \print_controller()
1 string reference to 'print_controller'
- print_menu in ./
print.module - Implementation of hook_menu().
File
- ./
print.module, line 252 - Display printer friendly versions of nodes (except books)
Code
function print_controller($module = NULL) {
$f = 'print_generate_' . $module;
if (function_exists($f)) {
$f();
}
else {
drupal_not_found();
}
}