function systeminfo_perm in System Information 5.2
Same name and namespace in other branches
- 5 systeminfo.module \systeminfo_perm()
- 6.3 systeminfo.module \systeminfo_perm()
- 6 systeminfo.module \systeminfo_perm()
- 6.2 systeminfo.module \systeminfo_perm()
Implementation of hook_perm().
File
- ./
systeminfo.module, line 31 - Displays information about the Drupal installation and system environment.
Code
function systeminfo_perm() {
return array(
'access system information',
'administer system information',
);
}