-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlib.php
92 lines (78 loc) · 2.67 KB
/
lib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?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/>.
/**
* Callbacks.
*
* @package tool_dynamic_cohorts
* @copyright 2024 Catalyst IT
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use core_reportbuilder\system_report_factory;
use tool_dynamic_cohorts\condition_form;
use tool_dynamic_cohorts\rule;
use tool_dynamic_cohorts\reportbuilder\local\systemreports\matching_users;
/**
* A new condition form as a fragment.
*
* @param array $args List of named arguments for the fragment loader.
* @return string
*/
function tool_dynamic_cohorts_output_fragment_condition_form(array $args): string {
$args = (object) $args;
$classname = clean_param($args->classname, PARAM_RAW);
$ajaxdata = [];
if (!empty($args->jsonformdata)) {
$serialiseddata = json_decode($args->jsonformdata);
parse_str($serialiseddata, $ajaxdata);
}
$mform = new condition_form(null, ['classname' => $classname], 'post', '', null, true, $ajaxdata);
unset($ajaxdata['classname']);
if (!empty($args->defaults)) {
$data = json_decode($args->defaults, true);
if (!empty($data)) {
$confifdata = json_decode($data['configdata']);
$data = $data + (array)$confifdata;
$mform->set_data($data);
}
}
if (!empty($ajaxdata)) {
$mform->is_validated();
}
return $mform->render();
}
/**
* A matching users table as a fragment.
*
* @param array $args List of named arguments for the fragment loader.
* @return string
*/
function tool_dynamic_cohorts_output_fragment_matching_users(array $args): string {
$args = (object) $args;
$ruleid = clean_param($args->ruleid, PARAM_INT);
$rule = rule::get_record(['id' => $ruleid]);
if (empty($rule)) {
throw new dml_missing_record_exception(null);
}
$report = system_report_factory::create(
matching_users::class,
context_system::instance(),
'tool_dynamic_cohorts',
'',
0,
['ruleid' => $ruleid]
);
return $report->output();
}