public function QuizQuestionResponse::getReportFormValidate in OG Quiz 7
Get the validate function for the reportForm
Return value
Validate function as a string, or FALSE if no validate function
1 call to QuizQuestionResponse::getReportFormValidate()
- 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::getReportFormValidate()
- LongAnswerResponse::getReportFormValidate in includes/
og_long_answer.php - Implementation of getReportFormValidate
File
- includes/
og_quiz_question.php, line 1107 - 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 getReportFormValidate($showfeedback = TRUE, $showpoints = TRUE, $allow_scoring = FALSE) {
return FALSE;
}