You are here

function systeminfo_permission in System Information 7.3

Same name and namespace in other branches
  1. 7.2 systeminfo.module \systeminfo_permission()

Implements hook_permission().

File

./systeminfo.module, line 44
This module displays information about the current state of the Drupal installation and system environment.

Code

function systeminfo_permission() {
  $perm = array();
  $perm['access system information'] = array(
    'title' => t('Access system information'),
  );
  $perm['administer system information'] = array(
    'title' => t('Administer system information'),
  );
  return $perm;
}