themekey.print.inc in ThemeKey 7
Same filename and directory in other branches
Integrates Print module's paths into ThemeKey.
@author Markus Kalkbrenner | Cocomore AG
See also
File
modules/themekey.print.incView source
<?php
/**
* @file
* Integrates Print module's paths into ThemeKey.
*
* @author Markus Kalkbrenner | Cocomore AG
* @see http://drupal.org/user/124705
*/
/**
* Implements hook_themekey_paths().
*/
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;
}
Functions
Name | Description |
---|---|
themekey_print_themekey_paths | Implements hook_themekey_paths(). |