You are here

function themekey_print_themekey_paths in ThemeKey 6.3

Same name and namespace in other branches
  1. 6.4 modules/themekey.print.inc \themekey_print_themekey_paths()
  2. 7.3 modules/themekey.print.inc \themekey_print_themekey_paths()
  3. 7 modules/themekey.print.inc \themekey_print_themekey_paths()
  4. 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;
}