mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
b3828cebd2
Use `reportbuilder` level two namespace for report related classes (entities, system reports, etc) within components and sub-systems.
53 lines
1.8 KiB
PHP
53 lines
1.8 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Config changes report
|
|
*
|
|
* @package report
|
|
* @subpackage configlog
|
|
* @copyright 2009 Petr Skoda
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
use core_reportbuilder\system_report_factory;
|
|
use core_reportbuilder\local\filters\text;
|
|
use report_configlog\reportbuilder\local\systemreports\config_changes;
|
|
|
|
require(__DIR__.'/../../config.php');
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
|
|
// Allow searching by setting when providing parameter directly.
|
|
$search = optional_param('search', '', PARAM_TEXT);
|
|
|
|
admin_externalpage_setup('reportconfiglog', '', ['search' => $search], '', ['pagelayout' => 'report']);
|
|
|
|
echo $OUTPUT->header();
|
|
echo $OUTPUT->heading(get_string('configlog', 'report_configlog'));
|
|
|
|
// Create out report instance, setting initial filtering if required.
|
|
$report = system_report_factory::create(config_changes::class, context_system::instance());
|
|
if (!empty($search)) {
|
|
$report->set_filter_values([
|
|
'config_change:setting_operator' => text::IS_EQUAL_TO,
|
|
'config_change:setting_value' => $search,
|
|
]);
|
|
}
|
|
|
|
echo $report->output();
|
|
|
|
echo $OUTPUT->footer();
|