1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* @package qtype
|
|
|
19 |
* @subpackage truefalse
|
|
|
20 |
* @copyright 2011 David Mudrak <david@moodle.com>
|
|
|
21 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
22 |
*/
|
|
|
23 |
|
|
|
24 |
defined('MOODLE_INTERNAL') || die();
|
|
|
25 |
|
|
|
26 |
/**
|
|
|
27 |
* True/false question type conversion handler
|
|
|
28 |
*/
|
|
|
29 |
class moodle1_qtype_truefalse_handler extends moodle1_qtype_handler {
|
|
|
30 |
|
|
|
31 |
/**
|
|
|
32 |
* @return array
|
|
|
33 |
*/
|
|
|
34 |
public function get_question_subpaths() {
|
|
|
35 |
return array(
|
|
|
36 |
'ANSWERS/ANSWER',
|
|
|
37 |
'TRUEFALSE',
|
|
|
38 |
);
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
/**
|
|
|
42 |
* Appends the truefalse specific information to the question
|
|
|
43 |
*/
|
|
|
44 |
public function process_question(array $data, array $raw) {
|
|
|
45 |
|
|
|
46 |
// Convert and write the answers first.
|
|
|
47 |
if (isset($data['answers'])) {
|
|
|
48 |
$this->write_answers($data['answers'], $this->pluginname);
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
// Convert and write the truefalse extra fields.
|
|
|
52 |
foreach ($data['truefalse'] as $truefalse) {
|
|
|
53 |
$truefalse['id'] = $this->converter->get_nextid();
|
|
|
54 |
$this->write_xml('truefalse', $truefalse, array('/truefalse/id'));
|
|
|
55 |
}
|
|
|
56 |
}
|
|
|
57 |
}
|