You are here

public function QuizQuestionResponse::getReportFormSubmit in OG Quiz 7

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 includes/og_quiz_question.php
Creates the report form for the admin pages, and for when a user gets feedback after answering questions.
1 method overrides QuizQuestionResponse::getReportFormSubmit()
LongAnswerResponse::getReportFormSubmit in includes/og_long_answer.php
Implementation of getReportFormSubmit

File

includes/og_quiz_question.php, line 1097
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($showfeedback = TRUE, $showpoints = TRUE, $allow_scoring = FALSE) {
  return FALSE;
}