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 essay
|
|
|
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 |
* Short answer question type conversion handler
|
|
|
28 |
*/
|
|
|
29 |
class moodle1_qtype_essay_handler extends moodle1_qtype_handler {
|
|
|
30 |
|
|
|
31 |
/**
|
|
|
32 |
* @return array
|
|
|
33 |
*/
|
|
|
34 |
public function get_question_subpaths() {
|
|
|
35 |
return array();
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
/**
|
|
|
39 |
* Appends the essay specific information to the question
|
|
|
40 |
*/
|
|
|
41 |
public function process_question(array $data, array $raw) {
|
|
|
42 |
// Data added on the upgrade step 2011031000.
|
|
|
43 |
$this->write_xml('essay', array(
|
|
|
44 |
'id' => $this->converter->get_nextid(),
|
|
|
45 |
'responseformat' => 'editor',
|
|
|
46 |
'responserequired' => 1,
|
|
|
47 |
'responsefieldlines' => 15,
|
|
|
48 |
'attachments' => 0,
|
|
|
49 |
'attachmentsrequired' => 0,
|
|
|
50 |
'graderinfo' => '',
|
|
|
51 |
'graderinfoformat' => FORMAT_HTML,
|
|
|
52 |
'responsetemplate' => '',
|
|
|
53 |
'responsetemplateformat' => FORMAT_HTML
|
|
|
54 |
), array('/essay/id'));
|
|
|
55 |
}
|
|
|
56 |
}
|