mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?PHP // $Id$
|
|
// backup.php - allows admin to edit all configuration variables for scheduled backups
|
|
|
|
require_once("../config.php");
|
|
require_once("../backup/lib.php");
|
|
|
|
require_login();
|
|
|
|
if (!isadmin()) {
|
|
error("Only an admin can use this page");
|
|
}
|
|
|
|
if (!$site = get_site()) {
|
|
error("Site isn't defined!");
|
|
}
|
|
|
|
|
|
/// If data submitted, then process and store.
|
|
|
|
if ($config = data_submitted()) {
|
|
//We need to do some weekdays conversions prior to continue
|
|
$i = 0;
|
|
$temp = "";
|
|
$a_config = (array)$config;
|
|
while ($i<7) {
|
|
$tocheck = "dayofweek_".$i;
|
|
if (isset($a_config[$tocheck])) {
|
|
$temp .= "1";
|
|
} else {
|
|
$temp .= "0";
|
|
}
|
|
unset($a_config[$tocheck]);
|
|
$i++;
|
|
}
|
|
$a_config['backup_sche_weekdays'] = $temp;
|
|
$config = (object)$a_config;
|
|
//weekdays conversions done. Continue
|
|
|
|
print_header();
|
|
foreach ($config as $name => $value) {
|
|
backup_set_config($name, $value);
|
|
}
|
|
redirect("$CFG->wwwroot/$CFG->admin/index.php", get_string("changessaved"), 1);
|
|
exit;
|
|
}
|
|
|
|
/// Otherwise print the form.
|
|
|
|
$stradmin = get_string("administration");
|
|
$strconfiguration = get_string("configuration");
|
|
$strbackup = get_string("backup");
|
|
|
|
print_header("$site->shortname: $strconfiguration: $strbackup", $site->fullname,
|
|
"<a href=\"index.php\">$stradmin</a> -> ".
|
|
"<a href=\"configure.php\">$strconfiguration</a> -> ".
|
|
"<a href=\"backup.php\">$strbackup</a>");
|
|
|
|
print_heading($strbackup);
|
|
|
|
print_simple_box("<center>".get_string("adminhelpbackup")."</center>", "center", "50%");
|
|
echo "<br />";
|
|
|
|
print_simple_box_start("center", "", "$THEME->cellheading");
|
|
include("$CFG->dirroot/backup/config.html");
|
|
print_simple_box_end();
|
|
|
|
print_footer();
|
|
|
|
?>
|