function themekey_blog_themekey_paths in ThemeKey 7.3
Same name and namespace in other branches
- 7.2 modules/themekey.blog.inc \themekey_blog_themekey_paths()
Implements hook_themekey_paths().
File
- modules/
themekey.blog.inc, line 60 - @author Markus Kalkbrenner | bio.logis GmbH
Code
function themekey_blog_themekey_paths() {
$paths = array();
$paths[] = array(
'path' => 'blog/#blog:uid',
);
return $paths;
}