function audit_perm

6.x audit.module audit_perm()

Implementation of hook_perm

File

modules/audit/audit.module, line 754
This is the Audit module, which provides functionality relating to degree audits.

Code

function audit_perm() {

  return array(
    "administer_audit" => array(
      "title" => t("Administer audit module settings"),
    ),
    "view_student_audits" => array(
      "title" => t("View student audits"),
      "description" => t("View the Audit tab for selected student, including audit comments."),
    ),
    "edit_audit_approvals" => array(
      "title" => t("Edit audit approvals"),
      "description" => t("Allows user to edit the 'approvals' for a student audit.  Ex: faculty or other user types."),
    ),

  );

}