public function MatchingResponse::__construct in Quiz 7
Same name and namespace in other branches
- 6.6 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
- 6.3 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
- 6.4 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
- 6.5 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
- 7.6 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
- 7.4 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
- 7.5 question_types/matching/matching.classes.inc \MatchingResponse::__construct()
Constructor
Overrides QuizQuestionResponse::__construct
File
- question_types/
matching/ matching.classes.inc, line 368 - matching.classes
Class
- MatchingResponse
- Extension of QuizQuestionResponse
Code
public function __construct($result_id, stdClass $question_node, $answer = NULL) {
parent::__construct($result_id, $question_node, $answer);
if (!isset($answer)) {
$res = db_query('SELECT ua.answer, score, ua.match_id FROM {quiz_matching_user_answers} ua
JOIN {quiz_matching_node} n ON n.match_id = ua.match_id
WHERE n.nid = :nid AND n.vid = :vid AND ua.result_id = :result_id', array(
':nid' => $question_node->nid,
':vid' => $question_node->vid,
':result_id' => $result_id,
));
$this->answer = array();
while ($obj = $res
->fetch()) {
$this->answer[$obj->match_id] = $obj->answer;
}
}
$this->is_correct = $this
->isCorrect();
}