You are here

public function QuizQuestionRelationship::getQuiz in Quiz 6.x

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

Return value

Quiz

File

src/Entity/QuizQuestionRelationship.php, line 113

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());
}