You are here

public function QuizQuestionRelationship::getQuiz in Quiz 8.5

Same name and namespace in other branches
  1. 8.6 src/Entity/QuizQuestionRelationship.php \Drupal\quiz\Entity\QuizQuestionRelationship::getQuiz()
  2. 6.x src/Entity/QuizQuestionRelationship.php \Drupal\quiz\Entity\QuizQuestionRelationship::getQuiz()

Return value

Quiz

File

src/Entity/QuizQuestionRelationship.php, line 112

Class

QuizQuestionRelationship
Defines the Quiz entity class.

Namespace

Drupal\quiz\Entity

Code

public function getQuiz() {
  return \Drupal::entityTypeManager()
    ->getStorage('quiz')
    ->loadRevision($this
    ->get('quiz_vid')
    ->getString());
}