function themekey_ui_permission in ThemeKey 7.2
Same name and namespace in other branches
- 7.3 themekey_ui.module \themekey_ui_permission()
- 7 themekey_ui.module \themekey_ui_permission()
Implements hook_perm().
File
- ./
themekey_ui.module, line 162 - ThemeKey UI is an extension for ThemeKey
Code
function themekey_ui_permission() {
return array(
'assign node themes' => array(
'title' => t('assign node themes'),
'description' => '',
),
'assign path alias themes' => array(
'title' => t('assign path alias themes'),
'description' => '',
),
'assign theme to own nodes' => array(
'title' => t('assign theme to own nodes'),
'description' => '',
),
);
}