You are here

public function ShortAnswerQuestion::entityBuilder in Quiz 8.4

Implementation of entityBuilder

File

question_types/short_answer/lib/Drupal/short_answer/ShortAnswerQuestion.php, line 72
The main classes for the short answer question type.

Class

ShortAnswerQuestion
Extension of QuizQuestion.

Namespace

Drupal\short_answer

Code

public function entityBuilder(&$form_state) {
  $this->node->correct_answer = $form_state['values']['correct_answer'];
  $this->node->correct_answer_evaluation = $form_state['values']['correct_answer_evaluation'];
  $this->node->add_directly = $form_state['values']['add_directly'];
}