-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathquestiontype.php
347 lines (328 loc) · 13 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Question type class for the wordselect question type.
*
* @package qtype_wordselect
* @copyright 2018 Marcus Green
* @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');
require_once($CFG->dirroot . '/question/type/wordselect/question.php');
/**
* The wordselect question type.
*
* @copyright 2018 Marcus Green
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class qtype_wordselect extends question_type {
/**
* data used by export_to_xml (among other things possibly
* @return array
*/
public function extra_question_fields() {
return array('question_wordselect', 'introduction', 'delimitchars', 'wordpenalty');
}
/**
* Move all the files belonging to this question from one context to another.
* @param int $questionid the question being moved.
* @param int $oldcontextid the context it is moving from.
* @param int $newcontextid the context it is moving to.
*
*/
public function move_files($questionid, $oldcontextid, $newcontextid) {
parent::move_files($questionid, $oldcontextid, $newcontextid);
$fs = get_file_storage();
$fs->move_area_files_to_new_context($oldcontextid,
$newcontextid, 'qtype_wordselect', 'introduction', $questionid);
$this->move_files_in_hints($questionid, $oldcontextid, $newcontextid);
}
/**
* Delete all the files belonging to this question.Seems the same as in the parent
* @param int $questionid the question being deleted.
* @param int $contextid the context the question is in.
*/
protected function delete_files($questionid, $contextid) {
parent::delete_files($questionid, $contextid);
$this->delete_files_in_hints($questionid, $contextid);
}
/**
* Save the extra data to your database tables from the
* $formdata/$data object, which has all the post data from editformdata.html
* Save the units and the answers associated with this question.
* @param object $formdata
* @return boolean
*/
public function save_question_options($formdata) {
global $DB;
$answerwords = $this->get_answerwords($formdata->delimitchars, $formdata->questiontext);
$context = $formdata->context;
// Fetch old answer ids so that we can reuse them.
$this->update_question_answers($formdata, $answerwords);
$options = $DB->get_record('question_wordselect', array('questionid' => $formdata->id));
$this->update_question_wordselect($formdata, $options, $context);
$this->save_hints($formdata, true);
return true;
}
/**
* It really does need to be static
* l for left delimiter r for right delimiter
* defaults to []
* e.g. l=[ and r=] where question is
* The [cat] sat on the [mat]
*
* @param string $delimitchars
* @param string $questiontext
* @return array
*/
public static function get_answerwords($delimitchars, $questiontext) {
$delim = self::get_delimit_array($delimitchars);
$fieldregex = '/.*?\\' . $delim["l"] . '(.*?)\\' . $delim["r"] . '/';
$matches = array();
preg_match_all($fieldregex, $questiontext, $matches);
return $matches[1];
}
/**
* chop the delimit string into a two element array
* this might be better done on initialisation
*
* @param string $delimitchars
* @return string
*/
public static function get_delimit_array($delimitchars) {
$delimitarray = array();
$delimitarray["l"] = substr($delimitchars, 0, 1);
$delimitarray["r"] = substr($delimitchars, 1, 1);
return $delimitarray;
}
/**
* Set up all the answer fields with respective fraction (mark values)
* This is used to update the question_answers table. Answerwords has
* been pulled from within the delimitchars e.g. the cat within [cat]
* Wronganswers (distractors) has been pulled from a comma delimited edit
* form field
* @param array $answerwords
* @param object $question
* @return array
*/
public function get_answer_fields(array $answerwords, $question) {
/* this code runs both on saving from a form and from importing and needs
* improving as it mixes pulling information from the question object which
* comes from the import and from $question->wronganswers field which
* comes from the question_editing form.
*/
$answerfields = array();
/* this next block runs when importing from xml */
if (property_exists($question, 'answer')) {
foreach ($question->answer as $key => $value) {
if ($question->fraction[$key] == 0) {
$answerfields[$key]['value'] = $question->answer[$key];
$answerfields[$key]['fraction'] = 0;
} else {
$answerfields[$key]['value'] = $question->answer[$key];
$answerfields[$key]['fraction'] = 1;
}
}
}
/* the rest of this function runs when saving from edit form */
if (!property_exists($question, 'answer')) {
foreach ($answerwords as $key => $value) {
$answerfields[$key]['value'] = $value;
$answerfields[$key]['fraction'] = 1;
}
}
return $answerfields;
}
/**
* Used when creating/editing a question
*
* @param object $question
* @param array $answerwords
*/
public function update_question_answers($question, array $answerwords) {
global $DB;
$oldanswers = $DB->get_records('question_answers', array('question' => $question->id), 'id ASC');
// Insert all the new answers.
foreach ($answerwords as $word) {
// Save the true answer - update an existing answer if possible.
if ($answer = array_shift($oldanswers)) {
$answer->question = $question->id;
$answer->answer = $word;
$answer->feedback = '';
$answer->fraction = 1;
$DB->update_record('question_answers', $answer);
} else {
// Insert a blank record.
$answer = new stdClass();
$answer->question = $question->id;
$answer->answer = $word;
$answer->feedback = '';
$answer->fraction = 1;
$answer->id = $DB->insert_record('question_answers', $answer);
}
}
// Delete old answer records.
foreach ($oldanswers as $oa) {
$DB->delete_records('question_answers', array('id' => $oa->id));
}
}
/**
* Used in the question editing form
*
* @param object $formdata
* @param object $options
* @param object $context
*/
public function update_question_wordselect($formdata, $options, $context) {
global $DB;
$options = $DB->get_record('question_wordselect', array('questionid' => $formdata->id));
if (!$options) {
$options = new stdClass();
$options->questionid = $formdata->id;
$options->introduction = '';
$options->delimitchars = '';
$options->wordpenalty = '';
$options->correctfeedback = '';
$options->partiallycorrectfeedback = '';
$options->incorrectfeedback = '';
$options->incorrectfeedback = '';
$options->id = $DB->insert_record('question_wordselect', $options);
}
/* when coming in from form */
if (is_array($formdata->introduction)) {
$options->introduction = $this->import_or_save_files($formdata->introduction,
$context, 'qtype_wordselect', 'introduction', $formdata->id);
} else {
/* when being imported e.g. from an xml import */
$options->introduction = $formdata->introduction;
$options->wordpenalty = $formdata->wordpenalty;
}
$options->delimitchars = $formdata->delimitchars;
$options->wordpenalty = $formdata->wordpenalty;
$options->correctfeedback = "";
$options = $this->save_combined_feedback_helper($options, $formdata, $context, false);
$DB->update_record('question_wordselect', $options);
}
/**
* Populates fields such as combined feedback
*
* Misleadingly named as it starts with get
* but doesn't return a value
* @param object $question
*/
public function get_question_options($question) {
global $DB;
$question->options = $DB->get_record('question_wordselect',
array('questionid' => $question->id), '*', MUST_EXIST);
parent::get_question_options($question);
}
/**
* When in a quiz/previewing *
*
* @param question_definition $question
* @param object $questiondata
*/
protected function initialise_question_instance(question_definition $question, $questiondata) {
parent::initialise_question_instance($question, $questiondata);
parent::initialise_combined_feedback($question, $questiondata);
$question->init($questiondata->questiontext, $questiondata->options->delimitchars);
}
/**
* Called from within questiontypebase
*
* @param string $hint
* @return question_hint_with_parts
*/
protected function make_hint($hint) {
return question_hint_with_parts::load_from_record($hint);
}
/**
* Import from xml, probably the most useful import formta
*
* @param array $data
* @param object $question
* @param qformat_xml $format
* @param object $extra
* @return boolean
*/
public function import_from_xml($data, $question, qformat_xml $format, $extra = null) {
if (!isset($data['@']['type']) || $data['@']['type'] != 'wordselect') {
return false;
}
$question = parent::import_from_xml($data, $question, $format, null);
$format->import_combined_feedback($question, $data, false);
$format->import_hints($question, $data, true, false, $format->get_format($question->questiontextformat));
return $question;
}
/**
* Export to xml format
*
* @param object $question
* @param qformat_xml $format
* @param object $extra
* @return string
*/
public function export_to_xml($question, qformat_xml $format, $extra = null) {
global $CFG;
$pluginmanager = core_plugin_manager::instance();
$wordselectinfo = $pluginmanager->get_plugin_info('qtype_wordselect');
$output = parent::export_to_xml($question, $format);
$output .= ' <delimitchars>' . $question->options->delimitchars .
"</delimitchars>\n";
$output .= ' <wordpenalty>' . $question->options->wordpenalty .
"</wordpenalty>\n";
$output .= ' <!-- Wordselect release:'
. $wordselectinfo->release . ' version:' . $wordselectinfo->versiondisk . ' Moodle version:'
. $CFG->version . ' release:' . $CFG->release
. " -->\n";
$output .= $format->write_combined_feedback($question->options, $question->id, $question->contextid);
return $output;
}
/**
* TODO Not sure what this does
* @param object $questiondata
* @return int
*/
public function get_random_guess_score($questiondata) {
// TODO.
return 0;
}
/**
* TODO Not sure what this does
* @param objet $questiondata
* @return array
*/
public function get_possible_responses($questiondata) {
// TODO.
return array();
}
/**
* Save the question (TODO investigate what this does)
* @param array $question The current question
* @param array $form The question editing form data
* @return object qtype_wordselect
*/
public function save_question($question, $form) {
$ws = new qtype_wordselect_question();
$ws->init($form->questiontext['text'], $form->delimitchars);
$correctplaces = $ws->get_correct_places($form->questiontext['text'], $form->delimitchars);
$form->defaultmark = count($correctplaces);
return parent::save_question($question, $form);
}
}