You are here

function perfmon_permission in Performance monitor 7

Implements hook_permission().

File

./perfmon.module, line 50
TODO: Enter file description here.

Code

function perfmon_permission() {
  return array(
    'access performance monitor report' => array(
      'title' => t('Access performance monitor report'),
      'description' => t('View performance monitor report. Give only to trusted users.'),
    ),
    'run performance monitor checks' => array(
      'title' => t('Run performance monitor checks'),
      'description' => t('Run performance monitor checks'),
    ),
  );
}