You are here

public function QuizQuestionResponse::getReportFormResponse in Quiz 8.4

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 question_types/quiz_question/lib/Drupal/quiz_question/QuizQuestionResponse.php
Creates the report form for the admin pages, and for when a user gets feedback after answering questions.
8 methods override QuizQuestionResponse::getReportFormResponse()
ClozeResponse::getReportFormResponse in question_types/cloze/lib/Drupal/cloze/ClozeResponse.php
Implementation of getReportFormResponse()
DDLinesResponse::getReportFormResponse in question_types/quiz_ddlines/lib/Drupal/quiz_ddlines/DDLinesResponse.php
Get the response part of the report form
LongAnswerResponse::getReportFormResponse in question_types/long_answer/lib/Drupal/long_answer/LongAnswerResponse.php
Implementation of getReportFormResponse
MatchingResponse::getReportFormResponse in question_types/matching/lib/Drupal/matching/MatchingResponse.php
Implementation of getReportFormResponse
MultichoiceResponse::getReportFormResponse in question_types/multichoice/lib/Drupal/multichoice/MultichoiceResponse.php
Implementation of getReportFormResponse

... See full list

File

question_types/quiz_question/lib/Drupal/quiz_question/QuizQuestionResponse.php, line 265

Class

QuizQuestionResponse

Namespace

Drupal\quiz_question

Code

public function getReportFormResponse($showpoints = TRUE, $showfeedback = TRUE, $allow_scoring = FALSE) {
  return array(
    '#markup' => '',
  );
}