public function QuizQuestionRelationship::getQuiz in Quiz 6.x
Same name and namespace in other branches
- 8.6 src/Entity/QuizQuestionRelationship.php \Drupal\quiz\Entity\QuizQuestionRelationship::getQuiz()
- 8.5 src/Entity/QuizQuestionRelationship.php \Drupal\quiz\Entity\QuizQuestionRelationship::getQuiz()
Return value
File
- src/
Entity/ QuizQuestionRelationship.php, line 113
Class
- QuizQuestionRelationship
- Defines the Quiz entity class.
Namespace
Drupal\quiz\EntityCode
public function getQuiz() {
return Drupal::entityTypeManager()
->getStorage('quiz')
->loadRevision($this
->get('quiz_vid')
->getString());
}