You are here

function systeminfo_perm in System Information 5.2

Same name and namespace in other branches
  1. 5 systeminfo.module \systeminfo_perm()
  2. 6.3 systeminfo.module \systeminfo_perm()
  3. 6 systeminfo.module \systeminfo_perm()
  4. 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',
  );
}