mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
ac6a7b144d
Call to backup_required_functions included.
104 lines
3.3 KiB
PHP
104 lines
3.3 KiB
PHP
<?PHP //$Id$
|
|
//This script is used to configure and execute the restore proccess.
|
|
|
|
//Define some globals for all the script
|
|
|
|
//MUST CHANGE WITH FINAL BACKUP LOCATION !! WITHOUT TRAILING SLASH !!
|
|
//ALL RELATIVE FROM THE LOCATION OF THE restore.php SCRIPT !!!
|
|
|
|
$moodle_home = "../../..";
|
|
$mods_home = "mod";
|
|
|
|
//END MUST CHANGE
|
|
|
|
//Units used
|
|
require_once ("$moodle_home/config.php");
|
|
require_once ("$moodle_home/version.php");
|
|
require_once ("$moodle_home/lib/xmlize.php");
|
|
require_once ("$moodle_home/course/lib.php");
|
|
require_once ("backup_version.php");
|
|
require_once ("db/backup_$CFG->dbtype.php");
|
|
require_once ("lib.php");
|
|
require_once ("restorelib.php");
|
|
|
|
//Optional
|
|
optional_variable($file);
|
|
|
|
//Check login
|
|
require_login();
|
|
|
|
//Check admin
|
|
if (!isadmin()) {
|
|
error("You need to be an admin user to use this page.", "$CFG->wwwroot/login/index.php");
|
|
}
|
|
|
|
//Check site
|
|
if (!$site = get_site()) {
|
|
error("Site not found!");
|
|
}
|
|
|
|
//Check necessary functions exists. Thanks to gregb@crowncollege.edu
|
|
backup_required_functions();
|
|
|
|
//Check backup_version
|
|
if ($file) {
|
|
$linkto = "restore.php?file=".$file;
|
|
} else {
|
|
$linkto = "restore.php";
|
|
}
|
|
upgrade_backup_db($backup_version,$backup_release,$linkto);
|
|
|
|
//Get strings
|
|
$strcourserestore = get_string("courserestore");
|
|
$stradministration = get_string("administration");
|
|
|
|
//If no file has been selected from the FileManager, inform and end
|
|
if (!$file) {
|
|
print_header("$site->shortname: $strcourserestore", $site->fullname,
|
|
"<A HREF=\"$moodle_home/$CFG->admin/index.php\">$stradministration</A> -> $strcourserestore");
|
|
print_heading(get_string("nofilesselected"));
|
|
print_continue("$moodle_home/$CFG->admin/index.php");
|
|
print_footer();
|
|
exit;
|
|
}
|
|
|
|
//If cancel has been selected, inform and end
|
|
if ($cancel) {
|
|
print_header("$site->shortname: $strcourserestore", $site->fullname,
|
|
"<A HREF=\"$moodle_home/$CFG->admin/index.php\">$stradministration</A> -> $strcourserestore");
|
|
print_heading(get_string("restorecancelled"));
|
|
print_continue("$moodle_home/$CFG->admin/index.php");
|
|
print_footer();
|
|
exit;
|
|
}
|
|
|
|
//We are here, so me have a file.
|
|
//Print header
|
|
print_header("$site->shortname: $strcourserestore", $site->fullname,
|
|
"<A HREF=\"$moodle_home/$CFG->admin/index.php\">$stradministration</A> ->
|
|
$strcourserestore -> ".basename($file));
|
|
//Print form
|
|
print_heading("$strcourserestore: ".basename($file));
|
|
print_simple_box_start("center", "", "$THEME->cellheading");
|
|
|
|
//Adjust some php variables to the execution of this script
|
|
ini_set("max_execution_time","3000");
|
|
ini_set("memory_limit","56M");
|
|
|
|
//Call the form, depending the step we are
|
|
if (!$launch) {
|
|
include_once("restore_precheck.html");
|
|
} else if ($launch == "form") {
|
|
include_once("restore_form.html");
|
|
} else if ($launch == "check") {
|
|
include_once("restore_check.html");
|
|
} else if ($launch == "execute") {
|
|
include_once("restore_execute.html");
|
|
}
|
|
print_simple_box_end();
|
|
|
|
//Print footer
|
|
print_footer();
|
|
|
|
?>
|