You are here

function systeminfo_perm in System Information 6.3

Same name and namespace in other branches
  1. 5.2 systeminfo.module \systeminfo_perm()
  2. 5 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 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;
}