You are here

function opigno_tincan_api_quiz_statements_tincan_question_statement_long_answer_alter in Opigno TinCan API 7

File

modules/opigno_tincan_api_quiz_statements/opigno_tincan_api_quiz_statements.questions_alter.inc, line 44

Code

function opigno_tincan_api_quiz_statements_tincan_question_statement_long_answer_alter(TinCan\Statement &$statement, $question, $answers) {

  /******
   ** Set the result
   ***/
  $answer = long_answer_get_answer($question->nid, $question->vid, $question->answers[0]['result_id']);
  _opigno_tincan_api_set_result($statement, $answer['score'], $answer['rel_max_score'], null, $answer['answer']);

  /******
   ** Set the interaction type properties
   ***/
  $objectDefinition = _opigno_tincan_api_get_object_definition($statement);
  $objectDefinition
    ->setInteractionType(OpignoTincanApiTinCanInteractionTypes::$long_fill_in);
}