Automatically generated installer lang files
[moodle.git] / question / export.php
blob434526dad9c2209a789775abc3f7d1e454c0386f
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 * Script for importing questions into the question bank.
20 * @package moodlecore
21 * @subpackage questionbank
22 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 require_once(__DIR__ . '/../config.php');
28 require_once($CFG->dirroot . '/question/editlib.php');
29 require_once($CFG->dirroot . '/question/export_form.php');
30 require_once($CFG->dirroot . '/question/format.php');
32 list($thispageurl, $contexts, $cmid, $cm, $module, $pagevars) =
33 question_edit_setup('export', '/question/export.php');
35 // get display strings
36 $strexportquestions = get_string('exportquestions', 'question');
38 list($catid, $catcontext) = explode(',', $pagevars['cat']);
39 $category = $DB->get_record('question_categories', array("id" => $catid, 'contextid' => $catcontext), '*', MUST_EXIST);
41 /// Header
42 $PAGE->set_url($thispageurl);
43 $PAGE->set_title($strexportquestions);
44 $PAGE->set_heading($COURSE->fullname);
45 echo $OUTPUT->header();
47 // Print horizontal nav if needed.
48 $renderer = $PAGE->get_renderer('core_question', 'bank');
49 echo $renderer->extra_horizontal_navigation();
51 $export_form = new question_export_form($thispageurl,
52 array('contexts' => $contexts->having_one_edit_tab_cap('export'), 'defaultcategory' => $pagevars['cat']));
55 if ($from_form = $export_form->get_data()) {
56 $thiscontext = $contexts->lowest();
57 if (!is_readable("format/{$from_form->format}/format.php")) {
58 print_error('unknowformat', '', '', $from_form->format);
60 $withcategories = 'nocategories';
61 if (!empty($from_form->cattofile)) {
62 $withcategories = 'withcategories';
64 $withcontexts = 'nocontexts';
65 if (!empty($from_form->contexttofile)) {
66 $withcontexts = 'withcontexts';
69 $classname = 'qformat_' . $from_form->format;
70 $qformat = new $classname();
71 $filename = question_default_export_filename($COURSE, $category) .
72 $qformat->export_file_extension();
73 $export_url = question_make_export_url($thiscontext->id, $category->id,
74 $from_form->format, $withcategories, $withcontexts, $filename);
76 echo $OUTPUT->box_start();
77 echo get_string('yourfileshoulddownload', 'question', $export_url->out());
78 echo $OUTPUT->box_end();
80 // Don't allow force download for behat site, as pop-up can't be handled by selenium.
81 if (!defined('BEHAT_SITE_RUNNING')) {
82 $PAGE->requires->js_function_call('document.location.replace', array($export_url->out(false)), false, 1);
85 echo $OUTPUT->continue_button(new moodle_url('edit.php', $thispageurl->params()));
86 echo $OUTPUT->footer();
87 exit;
90 /// Display export form
91 echo $OUTPUT->heading_with_help($strexportquestions, 'exportquestions', 'question');
93 $export_form->display();
95 echo $OUTPUT->footer();