Same name and namespace in other branches
  1. 4.6.x modules/system.module \system_perm()
  2. 4.7.x modules/system.module \system_perm()
  3. 5.x modules/system/system.module \system_perm()

Implementation of hook_perm().

File

modules/system/system.module, line 157
Configuration system that lets administrators modify the workings of the site.

Code

function system_perm() {
  return array(
    'administer site configuration',
    'access administration pages',
    'administer actions',
    'access site reports',
    'select different theme',
    'administer files',
  );
}