function system_perm in Drupal 5
Same name and namespace in other branches
- 4 modules/system.module \system_perm()
- 6 modules/system/system.module \system_perm()
Implementation of hook_perm().
File
- modules/
system/ system.module, line 48 - Configuration system that lets administrators modify the workings of the site.
Code
function system_perm() {
return array(
'administer site configuration',
'access administration pages',
'select different theme',
);
}