function audit_hidden_approval_form

6.x audit.module audit_hidden_approval_form()

File

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

Code

function audit_hidden_approval_form() {
  $form = array();

  $form ["approval_type"] = array(
    "type" => "text",
  );

  $form ["approval_student_id"] = array(
    "type" => "text",
  );

  $form ["approval_value"] = array(
    "type" => "text",
  );

  $form ["approval_comment"] = array(
    "type" => "textarea",
  );



  return $form;
}