You are here

public function LongAnswerResponse::getResponse in Quiz 8.6

Same name and namespace in other branches
  1. 8.5 question_types/quiz_long_answer/src/Plugin/quiz/QuizQuestion/LongAnswerResponse.php \Drupal\quiz_long_answer\Plugin\quiz\QuizQuestion\LongAnswerResponse::getResponse()
  2. 6.x question_types/quiz_long_answer/src/Plugin/quiz/QuizQuestion/LongAnswerResponse.php \Drupal\quiz_long_answer\Plugin\quiz\QuizQuestion\LongAnswerResponse::getResponse()

Implementation of getResponse().

Overrides QuizResultAnswerEntityTrait::getResponse

See also

QuizQuestionResponse::getResponse()

File

question_types/quiz_long_answer/src/Plugin/quiz/QuizQuestion/LongAnswerResponse.php, line 24

Class

LongAnswerResponse
Extension of QuizQuestionResponse.

Namespace

Drupal\quiz_long_answer\Plugin\quiz\QuizQuestion

Code

public function getResponse() {
  return $this
    ->get('long_answer')
    ->getString();
}