You are here

function themekey_ui_permission in ThemeKey 7.3

Same name and namespace in other branches
  1. 7 themekey_ui.module \themekey_ui_permission()
  2. 7.2 themekey_ui.module \themekey_ui_permission()

Implements hook_perm().

File

./themekey_ui.module, line 196
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 content'),
      'description' => t('Let the user select a theme that will be used to display all content she creates.'),
    ),
  );
}