Merge branch 'MDL-63303_master-deleteduserfix' of https://github.com/markn86/moodle
[moodle.git] / admin / upgradesettings.php
blobeecf91abbca8ad16aca0962cc82d3e62178a46da
1 <?php
3 // detects settings that were added during an upgrade, displays a screen for the admin to
4 // modify them, and then processes modifications
6 require_once('../config.php');
7 require_once($CFG->libdir.'/adminlib.php');
9 $return = optional_param('return', '', PARAM_ALPHA);
11 /// no guest autologin
12 require_login(0, false);
13 if (isguestuser()) {
14 // Login as real user!
15 $SESSION->wantsurl = (string)new moodle_url('/admin/upgradesettings.php', array('return'=>$return));
16 redirect(get_login_url());
19 admin_externalpage_setup('upgradesettings'); // now hidden page
20 $PAGE->set_pagelayout('maintenance'); // do not print any blocks or other rubbish, we want to force saving
21 $PAGE->blocks->show_only_fake_blocks();
22 $adminroot = admin_get_root(); // need all settings
24 // now we'll deal with the case that the admin has submitted the form with new settings
25 if ($data = data_submitted() and confirm_sesskey()) {
26 $count = admin_write_settings($data);
29 $newsettings = admin_output_new_settings_by_page($adminroot);
30 if (isset($newsettings['frontpagesettings'])) {
31 $frontpage = $newsettings['frontpagesettings'];
32 unset($newsettings['frontpagesettings']);
33 array_unshift($newsettings, $frontpage);
35 $newsettingshtml = implode($newsettings);
36 unset($newsettings);
38 $focus = '';
40 if (empty($adminroot->errors) and $newsettingshtml === '') {
41 // there must be either redirect without message or continue button or else upgrade would be sometimes broken
42 if ($return == 'site') {
43 redirect("$CFG->wwwroot/");
44 } else {
45 redirect("$CFG->wwwroot/$CFG->admin/index.php");
49 if (!empty($adminroot->errors)) {
50 $firsterror = reset($adminroot->errors);
51 $focus = $firsterror->id;
54 // and finally, if we get here, then there are new settings and we have to print a form
55 // to modify them
56 echo $OUTPUT->header($focus);
58 if (!empty($SITE->fullname) and !empty($SITE->shortname)) {
59 echo $OUTPUT->box(get_string('upgradesettingsintro','admin'), 'generalbox');
62 echo '<form action="upgradesettings.php" method="post" id="adminsettings">';
63 echo '<div>';
64 echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
65 echo '<input type="hidden" name="return" value="'.$return.'" />';
66 echo '<fieldset>';
67 echo '<div class="clearer"><!-- --></div>';
68 echo $newsettingshtml;
69 echo '</fieldset>';
70 echo '<div class="form-buttons"><input class="form-submit btn btn-primary" type="submit" value="'.get_string('savechanges','admin').'" /></div>';
71 echo '</div>';
72 echo '</form>';
74 echo $OUTPUT->footer();