2009-11-01 10:57:00 +00:00
|
|
|
<?php
|
2006-10-02 05:52:39 +00:00
|
|
|
|
|
|
|
// searches for admin settings
|
|
|
|
|
|
|
|
require_once('../config.php');
|
|
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
|
|
|
2008-05-30 21:36:57 +00:00
|
|
|
$query = trim(optional_param('query', '', PARAM_NOTAGS)); // Search string
|
|
|
|
|
2012-07-23 14:33:02 +08:00
|
|
|
$PAGE->set_context(context_system::instance());
|
2012-01-04 14:04:57 +08:00
|
|
|
|
|
|
|
admin_externalpage_setup('search', '', array('query' => $query)); // now hidden page
|
2009-06-12 11:53:35 +00:00
|
|
|
|
2009-01-20 23:53:34 +00:00
|
|
|
$adminroot = admin_get_root(); // need all settings here
|
2007-12-19 17:35:20 +00:00
|
|
|
$adminroot->search = $query; // So we can reference it in search boxes later in this invocation
|
2006-10-23 12:05:33 +00:00
|
|
|
$statusmsg = '';
|
2007-12-19 17:35:20 +00:00
|
|
|
$errormsg = '';
|
|
|
|
$focus = '';
|
2006-10-23 12:05:33 +00:00
|
|
|
|
2007-12-19 17:35:20 +00:00
|
|
|
// now we'll deal with the case that the admin has submitted the form with changed settings
|
2008-06-09 16:53:30 +00:00
|
|
|
if ($data = data_submitted() and confirm_sesskey()) {
|
2007-12-19 17:35:20 +00:00
|
|
|
if (admin_write_settings($data)) {
|
2016-03-17 21:17:35 +11:00
|
|
|
redirect($PAGE->url, get_string('changessaved'), null, \core\output\notification::NOTIFY_SUCCESS);
|
2007-12-19 17:35:20 +00:00
|
|
|
}
|
2006-10-02 05:52:39 +00:00
|
|
|
|
2007-12-19 17:35:20 +00:00
|
|
|
if (!empty($adminroot->errors)) {
|
|
|
|
$errormsg = get_string('errorwithsettings', 'admin');
|
|
|
|
$firsterror = reset($adminroot->errors);
|
|
|
|
$focus = $firsterror->id;
|
2016-03-17 21:17:35 +11:00
|
|
|
} else {
|
|
|
|
redirect($PAGE->url);
|
2006-10-02 05:52:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// and finally, if we get here, then there are matching settings and we have to print a form
|
|
|
|
// to modify them
|
2010-03-31 08:05:53 +00:00
|
|
|
echo $OUTPUT->header($focus);
|
2006-10-02 05:52:39 +00:00
|
|
|
|
2016-10-06 14:10:14 +08:00
|
|
|
echo $OUTPUT->heading(get_string('administrationsite'));
|
|
|
|
|
2007-12-19 17:35:20 +00:00
|
|
|
if ($errormsg !== '') {
|
2009-08-18 04:28:40 +00:00
|
|
|
echo $OUTPUT->notification($errormsg);
|
2007-12-19 17:35:20 +00:00
|
|
|
|
|
|
|
} else if ($statusmsg !== '') {
|
2009-08-18 04:28:40 +00:00
|
|
|
echo $OUTPUT->notification($statusmsg, 'notifysuccess');
|
2006-10-23 12:05:33 +00:00
|
|
|
}
|
|
|
|
|
2016-10-06 14:10:14 +08:00
|
|
|
require_once("admin_settings_search_form.php");
|
|
|
|
$form = new admin_settings_search_form();
|
|
|
|
$form->display();
|
|
|
|
echo '<hr>';
|
|
|
|
|
|
|
|
if ($query) {
|
|
|
|
echo admin_search_settings_html($query);
|
|
|
|
} else {
|
|
|
|
$node = $PAGE->settingsnav->find('root', navigation_node::TYPE_SITE_ADMIN);
|
|
|
|
if ($node) {
|
|
|
|
echo $OUTPUT->render_from_template('core/settings_link_page', ['node' => $node]);
|
|
|
|
}
|
|
|
|
}
|
2006-10-02 05:52:39 +00:00
|
|
|
|
2009-08-06 14:12:46 +00:00
|
|
|
echo $OUTPUT->footer();
|