Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

Differences Between: [Versions 310 and 401] [Versions 311 and 401] [Versions 39 and 401] [Versions 400 and 401]

   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.
  13  //
  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/>.
  16  
  17  /**
  18   * Config changes report
  19   *
  20   * @package    report
  21   * @subpackage configlog
  22   * @copyright  2009 Petr Skoda
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  use core_reportbuilder\system_report_factory;
  27  use core_reportbuilder\local\filters\text;
  28  use report_configlog\reportbuilder\local\systemreports\config_changes;
  29  
  30  require(__DIR__.'/../../config.php');
  31  require_once($CFG->libdir.'/adminlib.php');
  32  
  33  // Allow searching by setting when providing parameter directly.
  34  $search = optional_param('search', '', PARAM_TEXT);
  35  
  36  admin_externalpage_setup('reportconfiglog', '', ['search' => $search], '', ['pagelayout' => 'report']);
  37  
  38  echo $OUTPUT->header();
  39  echo $OUTPUT->heading(get_string('configlog', 'report_configlog'));
  40  
  41  // Create out report instance, setting initial filtering if required.
  42  $report = system_report_factory::create(config_changes::class, context_system::instance());
  43  if (!empty($search)) {
  44      $report->set_filter_values([
  45          'config_change:setting_operator' => text::IS_EQUAL_TO,
  46          'config_change:setting_value' => $search,
  47      ]);
  48  }
  49  
  50  echo $report->output();
  51  
  52  echo $OUTPUT->footer();