You are here

function audit_log_db_permission in Audit Log 7

Implements hook_permission().

File

modules/audit_log_db/audit_log_db.module, line 37
Hook implemenations for the Audit database logging module.

Code

function audit_log_db_permission() {
  return array(
    'audit_log_db_view_admin' => array(
      'title' => t('View audit log'),
      'description' => t('Access the default view that shows the log entries.'),
    ),
  );
}