MDL-81035 core: Fix redirect with sub-path
[moodle.git] / backup / backupfilesedit.php
blob59be7b065c8f8d18de4643546a79a85cb24580da
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Manage backup files
20 * @package moodlecore
21 * @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once('../config.php');
26 require_once(__DIR__ . '/backupfilesedit_form.php');
27 require_once($CFG->dirroot . '/backup/util/includes/restore_includes.php');
28 require_once($CFG->dirroot . '/repository/lib.php');
30 // current context
31 $contextid = required_param('contextid', PARAM_INT);
32 $currentcontext = required_param('currentcontext', PARAM_INT);
33 // file parameters
34 $component = optional_param('component', null, PARAM_COMPONENT);
35 $filearea = optional_param('filearea', null, PARAM_AREA);
36 $returnurl = optional_param('returnurl', null, PARAM_LOCALURL);
38 list($context, $course, $cm) = get_context_info_array($currentcontext);
39 $filecontext = context::instance_by_id($contextid, IGNORE_MISSING);
41 $url = new moodle_url('/backup/backupfilesedit.php', array('currentcontext'=>$currentcontext, 'contextid'=>$contextid, 'component'=>$component, 'filearea'=>$filearea));
43 require_login($course, false, $cm);
44 require_capability('moodle/restore:uploadfile', $context);
45 if ($filearea == 'automated' && !can_download_from_backup_filearea($filearea, $context)) {
46 throw new required_capability_exception($context, 'moodle/backup:downloadfile', 'nopermissions', '');
49 $PAGE->set_url($url);
50 $PAGE->set_context($context);
52 if ($context->contextlevel == CONTEXT_COURSECAT) {
53 core_course_category::page_setup();
54 $PAGE->set_secondary_active_tab('restorecourse');
55 } else if ($context->contextlevel == CONTEXT_COURSE) {
56 $course = get_course($context->instanceid);
57 $PAGE->set_heading($course->fullname);
58 $PAGE->set_secondary_active_tab('coursereuse');
59 } else if ($context->contextlevel == CONTEXT_SYSTEM) {
60 $PAGE->set_heading($SITE->fullname);
61 $PAGE->set_primary_active_tab('siteadminnode');
62 $PAGE->set_secondary_active_tab('courses');
63 } else {
64 $PAGE->set_heading($SITE->fullname);
66 // Set the restore course node active in the settings navigation block.
67 navigation_node::override_active_url(new moodle_url('/backup/restorefile.php', ['contextid' => $contextid]));
69 switch($filearea) {
70 case 'activity':
71 $title = get_string('managefiles_activity', 'backup');
72 break;
73 case 'course':
74 $title = get_string('managefiles_course', 'backup');
75 break;
76 case 'backup':
77 $title = get_string('managefiles_backup', 'backup');
78 break;
79 case 'automated':
80 $title = get_string('managefiles_automated', 'backup');
81 break;
82 default:
83 $title = get_string('managefiles', 'backup');
86 $PAGE->navbar->add($title);
87 $PAGE->set_title($title);
88 $PAGE->set_pagelayout('admin');
89 $browser = get_file_browser();
91 $data = new stdClass();
92 $options = array('subdirs'=>0, 'maxfiles'=>-1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
93 file_prepare_standard_filemanager($data, 'files', $options, $filecontext, $component, $filearea, 0);
94 $form = new backup_files_edit_form(null, array('data'=>$data, 'contextid'=>$contextid, 'currentcontext'=>$currentcontext, 'filearea'=>$filearea, 'component'=>$component, 'returnurl'=>$returnurl));
96 if ($form->is_cancelled()) {
97 redirect($returnurl);
100 $data = $form->get_data();
101 if ($data) {
102 $formdata = file_postupdate_standard_filemanager($data, 'files', $options, $filecontext, $component, $filearea, 0);
103 redirect($returnurl);
106 echo $OUTPUT->header();
107 \backup_helper::print_coursereuse_selector('restore');
109 echo $OUTPUT->container_start();
110 echo $OUTPUT->heading($title, 2, 'mt-4');
111 $form->display();
112 echo $OUTPUT->container_end();
114 echo $OUTPUT->footer();