You are here

public function QuizQuestionResponse::getReportFormTheme in Quiz 6.4

Same name and namespace in other branches
  1. 7 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReportFormTheme()
  2. 7.4 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReportFormTheme()

Get the theme key for the reportForm

Return value

Theme key as a string, or FALSE if no submit function

1 call to QuizQuestionResponse::getReportFormTheme()
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.

File

question_types/quiz_question/quiz_question.core.inc, line 931
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 getReportFormTheme($showfeedback = TRUE, $showpoints = TRUE) {
  return FALSE;
}