public function QuizResultAnswerEntityTrait::isEvaluated in Quiz 8.5
Same name and namespace in other branches
- 8.6 src/Entity/QuizResultAnswerEntityTrait.php \Drupal\quiz\Entity\QuizResultAnswerEntityTrait::isEvaluated()
- 6.x src/Entity/QuizResultAnswerEntityTrait.php \Drupal\quiz\Entity\QuizResultAnswerEntityTrait::isEvaluated()
Indicate whether the response has been evaluated (scored) yet.
Questions that require human scoring (e.g. essays) may need to manually toggle this.
Return value
bool
3 calls to QuizResultAnswerEntityTrait::isEvaluated()
- LongAnswerResponse::getFeedbackValues in question_types/
quiz_long_answer/ src/ Plugin/ quiz/ QuizQuestion/ LongAnswerResponse.php - Get the response part of the report form.
- QuizResultAnswerEntityTrait::getReportFormScore in src/
Entity/ QuizResultAnswerEntityTrait.php - Implementation of getReportFormScore().
- ShortAnswerResponse::getFeedbackValues in question_types/
quiz_short_answer/ src/ Plugin/ quiz/ QuizQuestion/ ShortAnswerResponse.php - Get the response part of the report form.
File
- src/
Entity/ QuizResultAnswerEntityTrait.php, line 47
Class
- QuizResultAnswerEntityTrait
- Each question type must store its own response data and be able to calculate a score for that data.
Namespace
Drupal\quiz\EntityCode
public function isEvaluated() {
return (bool) $this
->get('is_evaluated')
->getString();
}