MDL-28575 fix for master
[moodle.git] / question / import_form.php
bloba3b082b38b86bd0a6aad79bbb82427ece4134b1b
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.
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/>.
17 /**
18 * Defines the import questions form.
20 * @package moodlecore
21 * @subpackage questionbank
22 * @copyright 2007 Jamie Pratt me@jamiep.org
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
29 require_once($CFG->libdir . '/formslib.php');
32 /**
33 * Form to import questions into the question bank.
35 * @copyright 2007 Jamie Pratt me@jamiep.org
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 class question_import_form extends moodleform {
40 protected function definition() {
41 global $COURSE;
42 $mform = $this->_form;
44 $defaultcategory = $this->_customdata['defaultcategory'];
45 $contexts = $this->_customdata['contexts'];
47 // Choice of import format, with help icons.
48 $mform->addElement('header', 'fileformat', get_string('fileformat', 'question'));
50 $fileformatnames = get_import_export_formats('import');
51 $radioarray = array();
52 $i = 0 ;
53 foreach ($fileformatnames as $shortname => $fileformatname) {
54 $currentgrp1 = array();
55 $currentgrp1[] = $mform->createElement('radio', 'format', '', $fileformatname, $shortname);
56 $mform->addGroup($currentgrp1, "formathelp[$i]", '', array('<br />'), false);
57 $mform->addHelpButton("formathelp[$i]", $shortname, 'qformat_' . $shortname);
58 $i++ ;
60 $mform->addRule("formathelp[0]", null, 'required', null, 'client');
62 // Import options.
63 $mform->addElement('header','general', get_string('general', 'form'));
65 $mform->addElement('questioncategory', 'category', get_string('importcategory', 'question'), compact('contexts'));
66 $mform->setDefault('category', $defaultcategory);
67 $mform->addHelpButton('category', 'importcategory', 'question');
69 $categorygroup = array();
70 $categorygroup[] = $mform->createElement('checkbox', 'catfromfile', '', get_string('getcategoryfromfile', 'question'));
71 $categorygroup[] = $mform->createElement('checkbox', 'contextfromfile', '', get_string('getcontextfromfile', 'question'));
72 $mform->addGroup($categorygroup, 'categorygroup', '', '', false);
73 $mform->disabledIf('categorygroup', 'catfromfile', 'notchecked');
74 $mform->setDefault('catfromfile', 1);
75 $mform->setDefault('contextfromfile', 1);
77 $matchgrades = array();
78 $matchgrades['error'] = get_string('matchgradeserror', 'question');
79 $matchgrades['nearest'] = get_string('matchgradesnearest', 'question');
80 $mform->addElement('select', 'matchgrades', get_string('matchgrades', 'question'), $matchgrades);
81 $mform->addHelpButton('matchgrades', 'matchgrades', 'question');
82 $mform->setDefault('matchgrades', 'error');
84 $mform->addElement('selectyesno', 'stoponerror', get_string('stoponerror', 'question'));
85 $mform->setDefault('stoponerror', 1);
86 $mform->addHelpButton('stoponerror', 'stoponerror', 'question');
88 // The file to import
89 $mform->addElement('header', 'importfileupload', get_string('importquestions', 'question'));
91 $mform->addElement('filepicker', 'newfile', get_string('import'));
92 $mform->addRule('newfile', null, 'required', null, 'client');
94 // Submit button.
95 $mform->addElement('submit', 'submitbutton', get_string('import'));
97 // Set a template for the format select elements
98 $renderer = $mform->defaultRenderer();
99 $template = "{help} {element}\n";
100 $renderer->setGroupElementTemplate($template, 'format');
104 * Checks that a file has been uploaded, and that it is of a plausible type.
105 * @param array $data the submitted data.
106 * @param array $errors the errors so far.
107 * @return array the updated errors.
109 protected function validate_uploaded_file($data, $errors) {
110 if (empty($data['newfile'])) {
111 $errors['newfile'] = get_string('required');
112 return $errors;
115 $files = $this->get_draft_files('newfile');
116 if (count($files) < 1) {
117 $errors['newfile'] = get_string('required');
118 return $errors;
121 $formatfile = 'format/' . $data['format'] . '/format.php';
122 if (!is_readable($formatfile)) {
123 throw new moodle_exception('formatnotfound', 'question', '', $data['format']);
126 require_once($formatfile);
128 $classname = 'qformat_' . $data['format'];
129 $qformat = new $classname();
131 $file = reset($files);
132 if ($file->get_mimetype() != $qformat->mime_type()) {
133 $a = new stdClass();
134 $a->actualtype = $file->get_mimetype();
135 $a->expectedtype = $qformat->mime_type();
136 $errors['newfile'] = get_string('importwrongfiletype', 'question', $a);
139 return $errors;
142 public function validation($data, $files) {
143 $errors = parent::validation($data, $files);
144 $errors = $this->validate_uploaded_file($data, $errors);
145 return $errors;