function health_permission in Health Status 7
Implements hook_permissions().
File
- ./
health.module, line 25 - Contains the basic hooks and function used by the Health system.
Code
function health_permission() {
return array(
'access health report' => array(
'title' => t('Access the system health report.'),
'description' => t('Allows a user to see all information in the health report'),
),
);
}