function audit_get_approval_options

6.x audit.module audit_get_approval_options()

Returns a simple array of the available approval options in the popup.

3 calls to audit_get_approval_options()
audit_display_audit in modules/audit/audit.module
audit_hidden_approval_form_submit in modules/audit/audit.module
audit_popup_edit_approval_form in modules/audit/audit.module
This is the actual form that will be used to change an audit approval for a student.

File

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

Code

function audit_get_approval_options() {
  return array("not_complete" => t("Not Complete"), "in_progress" => t("In Progress"), "complete" => t("Complete"), "not_applicable" => t("Not Applicable"));

}