You are here

function themekey_perm in ThemeKey 6.3

Same name and namespace in other branches
  1. 6.4 themekey.module \themekey_perm()
  2. 6 themekey.module \themekey_perm()
  3. 6.2 themekey.module \themekey_perm()

Implements hook_perm().

File

./themekey.module, line 50
ThemeKey is designed as a generic theme switching module.

Code

function themekey_perm() {
  return array(
    'administer theme assignments',
    'administer themekey settings',
  );
}