function auditfiles_permission in Audit Files 7.3
Same name and namespace in other branches
- 7.4 auditfiles.module \auditfiles_permission()
Implements hook_permission().
File
- ./
auditfiles.module, line 131 - Implements various Drupal hooks.
Code
function auditfiles_permission() {
return array(
'access audit files reports' => array(
'title' => t("Access Audit Files' reports"),
'description' => t('Allow access to the reports generated by the Audit Files module.'),
),
'administer audit files' => array(
'title' => t('Administer Audit Files'),
'description' => t('Configure the administration settings for the Audit Files module.'),
),
);
}