Merge branch 'MDL-63303_master-deleteduserfix' of https://github.com/markn86/moodle
[moodle.git] / admin / message.php
blobc10034ae6ddb56172702f29c2b69f3c21d8a1ce9
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Message outputs configuration page
20 * @package message
21 * @copyright 2011 Lancaster University Network Services Limited
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 require_once(__DIR__ . '/../config.php');
25 require_once($CFG->dirroot . '/message/lib.php');
26 require_once($CFG->libdir.'/adminlib.php');
28 // This is an admin page
29 admin_externalpage_setup('managemessageoutputs');
31 // Get the submitted params
32 $disable = optional_param('disable', 0, PARAM_INT);
33 $enable = optional_param('enable', 0, PARAM_INT);
35 $headingtitle = get_string('managemessageoutputs', 'message');
37 if (!empty($disable) && confirm_sesskey()) {
38 if (!$processor = $DB->get_record('message_processors', array('id'=>$disable))) {
39 print_error('outputdoesnotexist', 'message');
41 \core_message\api::update_processor_status($processor, 0); // Disable output.
42 core_plugin_manager::reset_caches();
45 if (!empty($enable) && confirm_sesskey()) {
46 if (!$processor = $DB->get_record('message_processors', array('id'=>$enable))) {
47 print_error('outputdoesnotexist', 'message');
49 \core_message\api::update_processor_status($processor, 1); // Enable output.
50 core_plugin_manager::reset_caches();
53 if ($disable || $enable) {
54 $url = new moodle_url('message.php');
55 redirect($url);
57 // Page settings
58 $PAGE->set_context(context_system::instance());
60 // Grab the renderer
61 $renderer = $PAGE->get_renderer('core', 'message');
63 // Display the manage message outputs interface
64 $processors = get_message_processors();
65 $messageoutputs = $renderer->manage_messageoutputs($processors);
67 // Display the page
68 echo $OUTPUT->header();
69 echo $OUTPUT->heading($headingtitle);
70 echo $messageoutputs;
71 echo $OUTPUT->footer();