function themekey_debug_permission in ThemeKey 7.3
Same name and namespace in other branches
- 7 themekey_debug.module \themekey_debug_permission()
- 7.2 themekey_debug.module \themekey_debug_permission()
Implements hook_permission().
File
- ./
themekey_debug.module, line 16 - Provides a debug mode for module ThemeKey.
Code
function themekey_debug_permission() {
return array(
'themekey_debug_see_messages' => array(
'title' => t('See ThemeKey debug messages'),
'description' => t('Using this permission debug messages will be displayed to users in that role.'),
),
);
}