mirror of
https://github.com/moodle/moodle.git
synced 2025-02-09 17:41:52 +01:00
59 lines
2.3 KiB
PHP
59 lines
2.3 KiB
PHP
<?php
|
|
//This script is used to configure and execute the restore proccess.
|
|
|
|
require_once('../config.php');
|
|
require_once($CFG->dirroot . '/backup/util/includes/restore_includes.php');
|
|
require_once($CFG->dirroot . '/backup/moodle2/restore_plan_builder.class.php');
|
|
|
|
$contextid = required_param('contextid', PARAM_INT);
|
|
$stage = optional_param('stage', restore_ui::STAGE_CONFIRM, PARAM_INT);
|
|
|
|
list($context, $course, $cm) = get_context_info_array($contextid);
|
|
|
|
$PAGE->set_url(new moodle_url('/backup/restore.php', array('contextid'=>$contextid)));
|
|
$PAGE->set_context($context);
|
|
$PAGE->set_pagelayout('standard');
|
|
|
|
require_login($course, null, $cm);
|
|
|
|
$isfrontpage = ($course->id == SITEID);
|
|
|
|
if ($stage & restore_ui::STAGE_CONFIRM + restore_ui::STAGE_DESTINATION) {
|
|
$restore = restore_ui::engage_independent_stage($stage, $contextid);
|
|
} else {
|
|
$restoreid = optional_param('restore', false, PARAM_ALPHANUM);
|
|
$rc = restore_ui::load_controller($restoreid);
|
|
if (!$rc) {
|
|
$restore = restore_ui::engage_independent_stage($stage/2, $contextid);
|
|
if ($restore->process()) {
|
|
$rc = new restore_controller($restore->get_filepath(), $restore->get_course_id(), backup::INTERACTIVE_YES,
|
|
backup::MODE_GENERAL, $USER->id, backup::TARGET_NEW_COURSE);
|
|
}
|
|
}
|
|
if ($rc) {
|
|
$restore = new restore_ui($rc, array('contextid'=>$context->id));
|
|
}
|
|
}
|
|
$outcome = $restore->process();
|
|
if (!$restore->is_independent()) {
|
|
if ($restore->get_stage() == restore_ui::STAGE_PROCESS && !$restore->requires_substage()) {
|
|
$restore->execute();
|
|
} else {
|
|
$restore->save_controller();
|
|
}
|
|
}
|
|
$heading = $course->fullname;
|
|
|
|
$PAGE->set_title($heading.': '.$restore->get_stage_name());
|
|
$PAGE->set_heading($heading);
|
|
$PAGE->settingsnav->get('courseadmin')->find('restore', navigation_node::TYPE_SETTING)->make_active();
|
|
$PAGE->navbar->add($restore->get_stage_name());
|
|
|
|
$renderer = $PAGE->get_renderer('core','backup');
|
|
echo $OUTPUT->header();
|
|
if (!$restore->is_independent() && $restore->enforce_changed_dependencies()) {
|
|
echo $renderer->dependency_notification(get_string('dependenciesenforced','backup'));
|
|
}
|
|
echo $renderer->progress_bar($restore->get_progress_bar());
|
|
echo $restore->display($renderer);
|
|
echo $OUTPUT->footer(); |