MDL-72287 behat: Update behat tests
[moodle.git] / reportbuilder / edit.php
blobd67f04d425ee9fcdf6abe897b235ec13f5d072ec
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.
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/>.
17 /**
18 * Edit a custom report
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
25 declare(strict_types=1);
27 use core\output\dynamic_tabs;
28 use core_reportbuilder\manager;
29 use core_reportbuilder\permission;
30 use core_reportbuilder\output\dynamictabs\access;
31 use core_reportbuilder\output\dynamictabs\audience;
32 use core_reportbuilder\output\dynamictabs\editor;
34 require_once(__DIR__ . '/../config.php');
35 require_once("{$CFG->libdir}/adminlib.php");
37 $reportid = required_param('id', PARAM_INT);
39 admin_externalpage_setup('customreports', null, ['id' => $reportid], new moodle_url('/reportbuilder/edit.php'));
40 navigation_node::override_active_url(new moodle_url('/reportbuilder/index.php'));
42 $report = manager::get_report_from_id($reportid);
43 permission::require_can_edit_report($report->get_report_persistent());
45 $PAGE->set_context($report->get_context());
46 $PAGE->navbar->add(get_string('editreportcontent', 'core_reportbuilder'), $PAGE->url);
47 $PAGE->set_pagelayout('popup');
49 /** @var \core_reportbuilder\output\renderer $renderer */
50 $renderer = $PAGE->get_renderer('core_reportbuilder');
52 $reportname = $report->get_report_persistent()->get_formatted_name();
53 $PAGE->set_title($reportname);
55 echo $OUTPUT->header();
57 echo $renderer->render_fullpage_editor_header($report->get_report_persistent());
59 // Add dynamic tabs.
60 $tabdata = ['reportid' => $reportid];
61 $tabs = [
62 new editor($tabdata),
63 new audience($tabdata),
64 new access($tabdata),
67 echo $OUTPUT->render_from_template('core/dynamic_tabs',
68 (new dynamic_tabs($tabdata, $tabs))->export_for_template($OUTPUT));
70 echo $OUTPUT->footer();