You are here

public function QuizQuestionResponse::getReportFormSubmit in Quiz 8.4

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/lib/Drupal/quiz_question/QuizQuestionResponse.php
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/lib/Drupal/long_answer/LongAnswerResponse.php
Implementation of getReportFormSubmit
ShortAnswerResponse::getReportFormSubmit in question_types/short_answer/lib/Drupal/short_answer/ShortAnswerResponse.php
Implementation of getReportFormSubmit

File

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

Class

QuizQuestionResponse

Namespace

Drupal\quiz_question

Code

public function getReportFormSubmit($showfeedback = TRUE, $showpoints = TRUE, $allow_scoring = FALSE) {
  return FALSE;
}