-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.php
61 lines (50 loc) · 2.29 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Plugin status page.
*
* @package tool_forcedcache
* @copyright 2020 Peter Burnett <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(__DIR__ . '/../../../config.php');
require_once($CFG->libdir.'/adminlib.php');
admin_externalpage_setup('tool_forcedcache_status');
$PAGE->set_title(get_string('page_status', 'tool_forcedcache'));
$PAGE->set_heading(get_string('page_status', 'tool_forcedcache'));
echo $OUTPUT->header();
// Create a dummy cache config instance and check for errors in instantiation.
$dummy = new tool_forcedcache_cache_config();
$errors = $dummy->get_inclusion_errors();
if (empty($CFG->alternative_cache_factory_class) ||
$CFG->alternative_cache_factory_class !== 'tool_forcedcache_cache_factory' ||
!empty($errors)) {
echo $OUTPUT->notification(get_string('page_not_active', 'tool_forcedcache'), \core\output\notification::NOTIFY_ERROR);
} else {
echo $OUTPUT->notification(get_string('page_active', 'tool_forcedcache'), \core\output\notification::NOTIFY_SUCCESS);
}
if (!empty($errors)) {
echo html_writer::tag('h3', get_string('page_config_broken', 'tool_forcedcache'));
$error = html_writer::tag('pre', $errors);
echo html_writer::tag('p', get_string('page_config_broken_details', 'tool_forcedcache', $error));
} else {
echo $OUTPUT->notification(get_string('page_config_ok', 'tool_forcedcache'), \core\output\notification::NOTIFY_SUCCESS);
}
if (empty($errors)) {
$adminhelper = new tool_forcedcache_cache_administration_helper();
echo $adminhelper->get_ruleset_output();
}
echo $OUTPUT->footer();