-
Notifications
You must be signed in to change notification settings - Fork 1
/
export.php
94 lines (81 loc) · 3.33 KB
/
export.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
<?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/>.
/**
* Move questions page.
*
* @package qbank_bulkxmlexport
* @copyright 2024 Stephan Robotta
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(__DIR__ . '/../../../config.php');
require_once(__DIR__ . '/../../editlib.php');
require_once($CFG->libdir . '/questionlib.php');
require_once($CFG->dirroot . '/question/format/xml/format.php');
use qbank_bulkxmlexport\xmlexport;
global $DB, $COURSE;
$selected = optional_param(xmlexport::KEY, false, PARAM_BOOL);
$cmid = optional_param('cmid', 0, PARAM_INT);
$courseid = optional_param('courseid', 0, PARAM_INT);
$category = optional_param('category', null, PARAM_SEQUENCE);
\core_question\local\bank\helper::require_plugin_enabled('qbank_bulkxmlexport');
if ($cmid) {
list($module, $cm) = get_module_from_cmid($cmid);
require_login($cm->course, false, $cm);
$thiscontext = context_module::instance($cmid);
} else if ($courseid) {
require_login($courseid, false);
$thiscontext = context_course::instance($courseid);
} else {
throw new moodle_exception('missingcourseorcmid', 'question');
}
$contexts = new core_question\local\bank\question_edit_contexts($thiscontext);
$questionlist = [];
// The checked checkboxes have a name like q<ID> where <ID> is the question id.
$request = data_submitted();
if ($request) {
foreach (array_keys(get_object_vars($request)) as $key) {
if (strpos($key, 'q') === 0) {
$questionid = substr($key, 1);
if (is_number($questionid)) {
$question = question_bank::load_question_data($questionid);
$questiondata = question_bank::load_question_data($questionid);
question_require_capability_on($questiondata, 'view');
$questionlist[] = $questiondata;
}
}
}
}
$PAGE->set_url(xmlexport::URL);
$PAGE->set_heading($COURSE->fullname);
$PAGE->set_pagelayout('admin');
// Set up the Moodle xml export format.
$qformat = new qformat_xml();
$filename = question_default_export_filename($COURSE, (object)['name' => 'xmlexport']);
$filename = substr($filename, 0, strrpos($filename, '-')); // Remove the question id from the name.
$filename .= $qformat->export_file_extension();
$qformat->setContexts($contexts->having_one_edit_tab_cap('export'));
$qformat->setCourse($COURSE);
$qformat->setQuestions($questionlist);
$qformat->setCattofile(false);
$qformat->setContexttofile(false);
// Do the export and send the file to the browser.
if (!$qformat->exportpreprocess()) {
send_file_not_found();
}
if (!$content = $qformat->exportprocess(true)) {
send_file_not_found();
}
send_file($content, $filename, 0, 0, true, true, $qformat->mime_type());