function systeminfo_perm in System Information 6.3
Same name and namespace in other branches
- 5.2 systeminfo.module \systeminfo_perm()
- 5 systeminfo.module \systeminfo_perm()
- 6 systeminfo.module \systeminfo_perm()
- 6.2 systeminfo.module \systeminfo_perm()
Implementation of hook_perm().
File
- ./
systeminfo.module, line 44 - This module displays information about the current state of the Drupal installation and system environment.
Code
function systeminfo_perm() {
$perm = array();
$perm[] = 'access system information';
$perm[] = 'administer system information';
return $perm;
}