function themekey_permission in ThemeKey 7.3
Same name and namespace in other branches
- 7 themekey.module \themekey_permission()
- 7.2 themekey.module \themekey_permission()
Implements hook_permission().
File
- ./
themekey.module, line 45 - ThemeKey is designed as a generic theme-switching module.
Code
function themekey_permission() {
return array(
'administer theme assignments' => array(
'title' => t('administer theme assignments'),
'description' => t('TODO Add a description for \'administer theme assignments\''),
),
'administer themekey settings' => array(
'title' => t('administer themekey settings'),
'description' => t('TODO Add a description for \'administer themekey settings\''),
),
);
}