function themekey_print_themekey_paths in ThemeKey 7.3
Same name and namespace in other branches
- 6.4 modules/themekey.print.inc \themekey_print_themekey_paths()
- 6.3 modules/themekey.print.inc \themekey_print_themekey_paths()
- 7 modules/themekey.print.inc \themekey_print_themekey_paths()
- 7.2 modules/themekey.print.inc \themekey_print_themekey_paths()
Implements hook_themekey_paths().
File
- modules/
themekey.print.inc, line 15 - Integrates Print module's paths into ThemeKey.
Code
function themekey_print_themekey_paths() {
$paths = array();
$paths[] = array(
'path' => 'print/#node:nid',
);
$paths[] = array(
'path' => 'printpdf/#node:nid',
);
$paths[] = array(
'path' => 'printmail/#node:nid',
);
return $paths;
}