You are here

public function QuizQuestionResponse::getReportFormSubmit in Quiz 7.6

Same name and namespace in other branches
  1. 6.4 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReportFormSubmit()
  2. 7 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReportFormSubmit()
  3. 7.4 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReportFormSubmit()
  4. 7.5 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReportFormSubmit()

Get the submit function for the reportForm

Return value

Submit function as a string, or FALSE if no submit function

1 call to QuizQuestionResponse::getReportFormSubmit()
QuizQuestionResponse::getReportForm in question_types/quiz_question/quiz_question.core.inc
Creates the report form for the admin pages, and for when a user gets feedback after answering questions.
2 methods override QuizQuestionResponse::getReportFormSubmit()
LongAnswerResponse::getReportFormSubmit in question_types/long_answer/long_answer.classes.inc
Implementation of getReportFormSubmit
ShortAnswerResponse::getReportFormSubmit in question_types/short_answer/short_answer.classes.inc
Implementation of getReportFormSubmit

File

question_types/quiz_question/quiz_question.core.inc, line 802
Classes used in the Quiz Question module.

Class

QuizQuestionResponse
Each question type must store its own response data and be able to calculate a score for that data.

Code

public function getReportFormSubmit() {
  return FALSE;
}