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.
   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   * View a custom report
  19   *
  20   * @package   core_reportbuilder
  21   * @copyright 2021 David Matamoros <davidmc@moodle.com>
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  declare(strict_types=1);
  26  
  27  use core_reportbuilder\event\report_viewed;
  28  use core_reportbuilder\manager;
  29  use core_reportbuilder\output\custom_report;
  30  use core_reportbuilder\permission;
  31  
  32  require_once(__DIR__ . '/../config.php');
  33  require_once("{$CFG->libdir}/adminlib.php");
  34  
  35  $reportid = required_param('id', PARAM_INT);
  36  
  37  admin_externalpage_setup('customreports', null, ['id' => $reportid], new moodle_url('/reportbuilder/view.php'));
  38  navigation_node::override_active_url(new moodle_url('/reportbuilder/index.php'));
  39  
  40  $report = manager::get_report_from_id($reportid);
  41  permission::require_can_view_report($report->get_report_persistent());
  42  
  43  $PAGE->set_context($report->get_context());
  44  $PAGE->navbar->add(get_string('viewreport', 'core_reportbuilder'), $PAGE->url);
  45  
  46  /** @var \core_reportbuilder\output\renderer $renderer */
  47  $renderer = $PAGE->get_renderer('core_reportbuilder');
  48  
  49  $reportname = $report->get_report_persistent()->get_formatted_name();
  50  $PAGE->set_title($reportname);
  51  $PAGE->set_heading($reportname);
  52  
  53  echo $OUTPUT->header();
  54  
  55  $export = (new custom_report($report->get_report_persistent(), false))->export_for_template($renderer);
  56  echo $renderer->render_from_template('core_reportbuilder/report', $export);
  57  
  58  echo $OUTPUT->footer();
  59  
  60  // Trigger report viewed event.
  61  report_viewed::create_from_object($report->get_report_persistent())->trigger();