function themekey_node_themekey_paths in ThemeKey 7.3
Same name and namespace in other branches
- 6.4 modules/themekey.node.inc \themekey_node_themekey_paths()
- 6 modules/themekey.node.inc \themekey_node_themekey_paths()
- 6.2 modules/themekey.node.inc \themekey_node_themekey_paths()
- 6.3 modules/themekey.node.inc \themekey_node_themekey_paths()
- 7 modules/themekey.node.inc \themekey_node_themekey_paths()
- 7.2 modules/themekey.node.inc \themekey_node_themekey_paths()
Implements hook_themekey_paths().
File
- modules/
themekey.node.inc, line 220 - Provides some node attributes as ThemeKey properties.
Code
function themekey_node_themekey_paths() {
$paths = array();
$paths[] = array(
'path' => 'node/#node:nid',
);
$paths[] = array(
'path' => 'node/#node:nid/revisions/#node:vid/view',
);
return $paths;
}