You are here

public function MatchingResponse::__construct in Quiz 6.6

Same name and namespace in other branches
  1. 6.3 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
  2. 6.4 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
  3. 6.5 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
  4. 7.6 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
  5. 7 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
  6. 7.4 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
  7. 7.5 question_types/matching/matching.classes.inc \MatchingResponse::__construct()

File

question_types/matching/matching.classes.inc, line 222
matching.classes

Class

MatchingResponse
Class that describes a "Directions question response". For the most part, no real scoring takes place for a direction node. However, there are a few behind-the-scenes tricks that are done here to make the quiz-taking process a little easier.

Code

public function __construct($rid, $question, $answer = NULL) {
  $this->rid = $rid;
  $this->question = $question;
  $this->answer = $answer;
  $this->is_correct = $this
    ->isCorrect();
}