Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.3.x will end 7 October 2024 (12 months).
  • Bug fixes for security issues in 4.3.x will end 21 April 2025 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.2.x is supported too.
<?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\local\systemreports\config_changes;
> 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();