1 |
efrain |
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 |
declare(strict_types=1);
|
|
|
18 |
|
|
|
19 |
namespace core_reportbuilder\external\conditions;
|
|
|
20 |
|
|
|
21 |
use core_external\external_api;
|
|
|
22 |
use core_external\external_value;
|
|
|
23 |
use core_external\external_single_structure;
|
|
|
24 |
use core_external\external_function_parameters;
|
|
|
25 |
use core_reportbuilder\manager;
|
|
|
26 |
use core_reportbuilder\permission;
|
|
|
27 |
use core_reportbuilder\external\custom_report_conditions_exporter;
|
|
|
28 |
use core_reportbuilder\local\helpers\report;
|
|
|
29 |
|
|
|
30 |
/**
|
|
|
31 |
* External method for deleting report conditions
|
|
|
32 |
*
|
|
|
33 |
* @package core_reportbuilder
|
|
|
34 |
* @copyright 2021 Paul Holden <paulh@moodle.com>
|
|
|
35 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
36 |
*/
|
|
|
37 |
class delete extends external_api {
|
|
|
38 |
|
|
|
39 |
/**
|
|
|
40 |
* External method parameters
|
|
|
41 |
*
|
|
|
42 |
* @return external_function_parameters
|
|
|
43 |
*/
|
|
|
44 |
public static function execute_parameters(): external_function_parameters {
|
|
|
45 |
return new external_function_parameters([
|
|
|
46 |
'reportid' => new external_value(PARAM_INT, 'Report ID'),
|
|
|
47 |
'conditionid' => new external_value(PARAM_INT, 'Condition ID'),
|
|
|
48 |
]);
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
/**
|
|
|
52 |
* External method execution
|
|
|
53 |
*
|
|
|
54 |
* @param int $reportid
|
|
|
55 |
* @param int $conditionid
|
|
|
56 |
* @return array
|
|
|
57 |
*/
|
|
|
58 |
public static function execute(int $reportid, int $conditionid): array {
|
|
|
59 |
global $PAGE, $OUTPUT;
|
|
|
60 |
|
|
|
61 |
[
|
|
|
62 |
'reportid' => $reportid,
|
|
|
63 |
'conditionid' => $conditionid,
|
|
|
64 |
] = self::validate_parameters(self::execute_parameters(), [
|
|
|
65 |
'reportid' => $reportid,
|
|
|
66 |
'conditionid' => $conditionid,
|
|
|
67 |
]);
|
|
|
68 |
|
|
|
69 |
$report = manager::get_report_from_id($reportid);
|
|
|
70 |
|
|
|
71 |
self::validate_context($report->get_context());
|
|
|
72 |
permission::require_can_edit_report($report->get_report_persistent());
|
|
|
73 |
|
|
|
74 |
report::delete_report_condition($reportid, $conditionid);
|
|
|
75 |
|
|
|
76 |
// Set current URL and force bootstrap_renderer to initiate moodle page.
|
|
|
77 |
$PAGE->set_url('/');
|
|
|
78 |
$OUTPUT->header();
|
|
|
79 |
$PAGE->start_collecting_javascript_requirements();
|
|
|
80 |
|
|
|
81 |
$exporter = new custom_report_conditions_exporter(null, ['report' => $report]);
|
|
|
82 |
|
|
|
83 |
$export = $exporter->export($PAGE->get_renderer('core'));
|
|
|
84 |
$export->javascript = $PAGE->requires->get_end_code();
|
|
|
85 |
|
|
|
86 |
return (array) $export;
|
|
|
87 |
}
|
|
|
88 |
|
|
|
89 |
/**
|
|
|
90 |
* External method return value
|
|
|
91 |
*
|
|
|
92 |
* @return external_value
|
|
|
93 |
*/
|
|
|
94 |
public static function execute_returns(): external_single_structure {
|
|
|
95 |
return custom_report_conditions_exporter::get_read_structure();
|
|
|
96 |
}
|
|
|
97 |
}
|