-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestiontype.php
192 lines (150 loc) · 6.53 KB
/
questiontype.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?php
/**
* Question type class for the order question type.
*
* @package qtype
* @subpackage order
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/questionlib.php');
require_once($CFG->dirroot . '/question/engine/lib.php');
/**
* The order question type class.
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class qtype_order extends question_type {
public function get_question_options($question) {
global $DB;
parent::get_question_options($question);
$question->options = $DB->get_record('question_order', array('question' => $question->id));
$question->options->subquestions = $DB->get_records('question_order_sub',
array('question' => $question->id), 'id ASC');
return true;
}
public function save_question_options($question) {
global $DB;
$context = $question->context;
$result = new stdClass();
$oldsubquestions = $DB->get_records('question_order_sub',
array('question' => $question->id), 'id ASC');
// $subquestions will be an array with subquestion ids
$subquestions = array();
// Insert all the new question+answer pairs
$ordercount = 1;
foreach ($question->subquestions as $key => $questiontext) {
if ($questiontext['text'] == '') {
continue;
}
// Update an existing subquestion if possible.
$subquestion = array_shift($oldsubquestions);
if (!$subquestion) {
$subquestion = new stdClass();
// Determine a unique random code
$subquestion->code = rand(1, 999999999);
while ($DB->record_exists('question_order_sub',
array('code' => $subquestion->code, 'question' => $question->id))) {
$subquestion->code = rand(1, 999999999);
}
$subquestion->question = $question->id;
$subquestion->questiontext = '';
$subquestion->answertext = '';
$subquestion->id = $DB->insert_record('question_order_sub', $subquestion);
}
$subquestion->questiontext = $this->import_or_save_files($questiontext,
$context, 'qtype_order', 'subquestion', $subquestion->id);
$subquestion->questiontextformat = $questiontext['format'];
$subquestion->answertext = $ordercount;
$ordercount++;
$DB->update_record('question_order_sub', $subquestion);
$subquestions[] = $subquestion->id;
}
// Delete old subquestions records
$fs = get_file_storage();
foreach ($oldsubquestions as $oldsub) {
$fs->delete_area_files($context->id, 'qtype_order', 'subquestion', $oldsub->id);
$DB->delete_records('question_order_sub', array('id' => $oldsub->id));
}
// Save the question options.
$options = $DB->get_record('question_order', array('question' => $question->id));
if (!$options) {
$options = new stdClass();
$options->question = $question->id;
$options->correctfeedback = '';
$options->partiallycorrectfeedback = '';
$options->incorrectfeedback = '';
$options->id = $DB->insert_record('question_order', $options);
}
$options->subquestions = implode(',', $subquestions);
$options->horizontal = $question->horizontal;
$options = $this->save_combined_feedback_helper($options, $question, $context, true);
$DB->update_record('question_order', $options);
$this->save_hints($question, true);
if (!empty($result->notice)) {
return $result;
}
if (count($subquestions) < 3) {
$result->notice = get_string('notenoughanswers', 'question', 3);
return $result;
}
return true;
}
protected function initialise_question_instance(question_definition $question, $questiondata) {
parent::initialise_question_instance($question, $questiondata);
$question->shufflestems = true;
$question->horizontal = $questiondata->options->horizontal;
$this->initialise_combined_feedback($question, $questiondata, true);
$question->stems = array();
$question->choices = array();
$question->right = array();
foreach ($questiondata->options->subquestions as $matchsub) {
$ans = $matchsub->answertext;
$key = array_search($matchsub->answertext, $question->choices);
if ($key === false) {
$key = $matchsub->id;
$question->choices[$key] = $matchsub->answertext;
}
if ($matchsub->questiontext !== '') {
$question->stems[$matchsub->id] = $matchsub->questiontext;
$question->stemformat[$matchsub->id] = $matchsub->questiontextformat;
$question->right[$matchsub->id] = $key;
}
}
}
protected function make_hint($hint) {
return question_hint_with_parts::load_from_record($hint);
}
public function delete_question($questionid, $contextid) {
parent::delete_question($questionid, $contextid);
}
public function get_random_guess_score($questiondata) {
$q = $this->make_question($questiondata);
return 1 / count($q->choices);
}
public function get_possible_responses($questiondata) {
$subqs = array();
$q = $this->make_question($questiondata);
foreach ($q->stems as $stemid => $stem) {
$responses = array();
foreach ($q->choices as $choiceid => $choice) {
$responses[$choiceid] = new question_possible_response(
$q->html_to_text($stem, $q->stemformat[$stemid]) . ': ' . $choice,
($choiceid == $q->right[$stemid]) / count($q->stems));
}
$responses[null] = question_possible_response::no_response();
$subqs[$stemid] = $responses;
}
return $subqs;
}
public function move_files($questionid, $oldcontextid, $newcontextid) {
global $DB;
$fs = get_file_storage();
parent::move_files($questionid, $oldcontextid, $newcontextid);
}
protected function delete_files($questionid, $contextid) {
global $DB;
$fs = get_file_storage();
parent::delete_files($questionid, $contextid);
}
}