mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 20:36:42 +01:00
144 lines
5.1 KiB
PHP
144 lines
5.1 KiB
PHP
<?php // $Id$
|
|
|
|
// detects settings that were added during an upgrade, displays a screen for the admin to
|
|
// modify them, and then processes modifications
|
|
|
|
require_once('../config.php');
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
|
|
$adminroot = admin_get_root();
|
|
admin_externalpage_setup('adminnotifications', $adminroot); // we pretend to be the adminnotifications page... don't wanna show up in the menu :)
|
|
|
|
// a caveat: we're depending on only having one admin access this page at once. why? the following line
|
|
// (the function call to find_new_settings) must have the EXACT SAME RETURN VALUE both times that this
|
|
// page is loaded (i.e. both when we're displaying the form and then when we process the form's input).
|
|
// if the return values don't match, we could potentially lose changes that the admin is making.
|
|
|
|
$newsettingshtml = output_new_settings_by_page(admin_get_root());
|
|
|
|
// first we deal with the case where there are no new settings to be set
|
|
if ($newsettingshtml == '') {
|
|
redirect($CFG->wwwroot . '/' . $CFG->admin . '/index.php', get_string('nonewsettings','admin'),1);
|
|
die;
|
|
}
|
|
|
|
// now we'll deal with the case that the admin has submitted the form with new settings
|
|
if ($data = data_submitted()) {
|
|
$data = (array)$data;
|
|
if (confirm_sesskey()) {
|
|
$newsettings = find_new_settings(admin_get_root());
|
|
$errors = '';
|
|
|
|
foreach($newsettings as $newsetting) {
|
|
if (isset($data['s_' . $newsetting->name])) {
|
|
$errors .= $newsetting->write_setting($data['s_' . $newsetting->name]);
|
|
} else {
|
|
$errors .= $newsetting->write_setting($newsetting->defaultsetting);
|
|
}
|
|
}
|
|
|
|
if (empty($errors)) {
|
|
redirect($CFG->wwwroot . '/' . $CFG->admin . '/index.php', get_string('changessaved'),1);
|
|
die;
|
|
} else {
|
|
error(get_string('errorwithsettings', 'admin') . ' <br />' . $errors);
|
|
die;
|
|
}
|
|
} else {
|
|
error(get_string('confirmsesskeybad', 'error'));
|
|
die;
|
|
}
|
|
|
|
}
|
|
|
|
// and finally, if we get here, then there are new settings and we have to print a form
|
|
// to modify them
|
|
admin_externalpage_print_header($adminroot);
|
|
|
|
|
|
echo '<form action="upgradesettings.php" method="post" name="mainform">';
|
|
echo '<input type="hidden" name="sesskey" value="' . $USER->sesskey . '" />';
|
|
print_simple_box_start('','100%','',5,'generalbox','');
|
|
print_heading(get_string('upgradesettings','admin'));
|
|
echo '<table class="generaltable" width="100%" border="0" align="center" cellpadding="5" cellspacing="1">' . "\n";
|
|
echo '<tr><td colspan="2">' . get_string('upgradesettingsintro','admin') . '</td></tr>';
|
|
echo $newsettingshtml;
|
|
echo '</table>';
|
|
echo '<center><input type="submit" value="Save Changes" /></center>';
|
|
print_simple_box_end();
|
|
echo '</form>';
|
|
|
|
admin_externalpage_print_footer($adminroot);
|
|
|
|
|
|
/**
|
|
* Find settings that have not been initialized (e.g. during initial install or an upgrade).
|
|
*
|
|
* Tests each setting's get_setting() method. If the result is NULL, we consider the setting
|
|
* to be uninitialized.
|
|
*
|
|
* @param string &$node The node at which to start searching. Should be $ADMIN for all external calls to this function.
|
|
* @return array An array containing admin_setting objects that haven't yet been initialized
|
|
*/
|
|
function find_new_settings(&$node) {
|
|
|
|
if (is_a($node, 'admin_category')) {
|
|
$return = array();
|
|
$entries = array_keys($node->children);
|
|
foreach ($entries as $entry) {
|
|
$return = array_merge($return, find_new_settings($node->children[$entry]));
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
if (is_a($node, 'admin_settingpage')) {
|
|
$return = array();
|
|
foreach ($node->settings as $setting) {
|
|
if ($setting->get_setting() === NULL) {
|
|
$return[] =& $setting;
|
|
}
|
|
unset($setting); // needed to prevent odd (imho) reference behaviour
|
|
// see http://www.php.net/manual/en/language.references.whatdo.php#AEN6399
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
function output_new_settings_by_page(&$node) {
|
|
|
|
if (is_a($node, 'admin_category')) {
|
|
$entries = array_keys($node->children);
|
|
$return = '';
|
|
foreach ($entries as $entry) {
|
|
$return .= output_new_settings_by_page($node->children[$entry]);
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
if (is_a($node, 'admin_settingpage')) {
|
|
$newsettings = array();
|
|
foreach ($node->settings as $setting) {
|
|
if ($setting->get_setting() === NULL) {
|
|
$newsettings[] =& $setting;
|
|
}
|
|
unset($setting); // needed to prevent odd (imho) reference behaviour
|
|
// see http://www.php.net/manual/en/language.references.whatdo.php#AEN6399
|
|
}
|
|
$return = '';
|
|
if (count($newsettings) > 0) {
|
|
$return = '<tr><td colspan="2"><strong>' . $node->visiblename . '</strong></td></tr>';
|
|
foreach ($newsettings as $newsetting) {
|
|
$return .= $newsetting->output_html();
|
|
}
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
?>
|