public function QuizQuestionResponse::getReportFormTheme in OG Quiz 7
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 includes/
og_quiz_question.php - Creates the report form for the admin pages, and for when a user gets feedback after answering questions.
File
- includes/
og_quiz_question.php, line 1117 - 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;
}