You are here

function short_answer_report_submit in Quiz 7.5

Same name and namespace in other branches
  1. 8.4 question_types/short_answer/short_answer.module \short_answer_report_submit()
  2. 6.4 question_types/short_answer/short_answer.module \short_answer_report_submit()
  3. 7.6 question_types/short_answer/short_answer.module \short_answer_report_submit()
  4. 7 question_types/short_answer/short_answer.module \short_answer_report_submit()
  5. 7.4 question_types/short_answer/short_answer.module \short_answer_report_submit()

Submit function for the report form.

Parameters

array $values: The FAPI $form_state['values'].

1 string reference to 'short_answer_report_submit'
ShortAnswerResponse::getReportFormSubmit in question_types/short_answer/short_answer.classes.inc
Implementation of getReportFormSubmit().

File

question_types/short_answer/short_answer.module, line 151
Short_answer question type for the Quiz module.

Code

function short_answer_report_submit($values) {
  short_answer_score_an_answer($values, FALSE);
}