public function QuizQuestionResponse::getReportFormResponse in OG Quiz 7
Get the response part of the report form
Parameters
$showpoints:
$showfeedback:
$allow_scoring:
Return value
FAPI form array holding the response part
1 call to QuizQuestionResponse::getReportFormResponse()
- 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::getReportFormResponse()
- LongAnswerResponse::getReportFormResponse in includes/
og_long_answer.php - Implementation of getReportFormResponse
File
- includes/
og_quiz_question.php, line 1069 - 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 getReportFormResponse($showpoints = TRUE, $showfeedback = TRUE, $allow_scoring = FALSE) {
return array(
'#markup' => '',
);
}