function themekey_user_themekey_paths in ThemeKey 7.3
Implements hook_themekey_paths().
File
- modules/
themekey.user.inc, line 74 - Provides some user attributes as ThemeKey properties.
Code
function themekey_user_themekey_paths() {
$paths = array();
$paths[] = array(
'path' => 'user/#profile:uid',
);
$paths[] = array(
'path' => 'user/#profile:uid/edit',
);
return $paths;
}