-
Notifications
You must be signed in to change notification settings - Fork 10
/
lib.php
358 lines (293 loc) · 10.4 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?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/>.
/**
* This page contains callbacks.
*
* @package local_assessfreq
* @copyright 2020 Matt Porritt <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
/**
* Returns the name of the user preferences as well as the details this plugin uses.
*
* @return array
*/
function local_assessfreq_user_preferences() {
$preferences['local_assessfreq_overview_year_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => date('Y'),
'type' => PARAM_INT,
];
$preferences['local_assessfreq_heatmap_year_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => date('Y'),
'type' => PARAM_INT,
];
$preferences['local_assessfreq_heatmap_metric_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 'assess',
'type' => PARAM_ALPHA,
];
$preferences['local_assessfreq_heatmap_modules_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => '[]',
'type' => PARAM_RAW,
];
$preferences['local_assessfreq_quiz_refresh_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 60,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_quiz_table_rows_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 20,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_student_search_table_rows_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 20,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_student_search_table_hoursahead_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 4,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_student_search_table_hoursbehind_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 1,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_quizzes_inprogress_table_hoursahead_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 0,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_quizzes_inprogress_table_hoursbehind_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 0,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_quiz_table_inprogress_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 20,
'type' => PARAM_INT,
];
$preferences['local_assessfreq_quiz_table_inprogress_sort_preference'] = [
'null' => NULL_NOT_ALLOWED,
'default' => 'name_asc',
'type' => PARAM_ALPHAEXT,
];
return $preferences;
}
/**
* Return the HTML for the given chart.
*
* @param string $args JSON from the calling AJAX function.
* @return string $chartdata The generated chart.
*/
function local_assessfreq_output_fragment_get_chart($args): string {
$allowedcalls = [
'assess_by_month',
'assess_by_activity',
'assess_by_month_student',
];
$context = $args['context'];
has_capability('moodle/site:config', $context);
$data = json_decode($args['data']);
if (in_array($data->call, $allowedcalls)) {
$classname = '\\local_assessfreq\\output\\' . $data->call;
$methodname = 'get_' . $data->call . '_chart';
} else {
throw new moodle_exception('Call not allowed');
}
$assesschart = new $classname();
$chart = $assesschart->$methodname($data->year);
$chartdata = json_encode($chart);
return $chartdata;
}
/**
* Return the HTML for the given chart.
*
* @param string $args JSON from the calling AJAX function.
* @return string $chartdata The generated chart.
*/
function local_assessfreq_output_fragment_get_quiz_chart($args): string {
$allowedcalls = [
'participant_summary',
'participant_trend',
];
$context = $args['context'];
has_capability('moodle/site:config', $context);
$data = json_decode($args['data']);
if (in_array($data->call, $allowedcalls)) {
$classname = '\\local_assessfreq\\output\\' . $data->call;
$methodname = 'get_' . $data->call . '_chart';
} else {
throw new moodle_exception('Call not allowed');
}
$assesschart = new $classname();
$chart = $assesschart->$methodname($data->quiz);
$chartdata = json_encode($chart);
return $chartdata;
}
/**
* Return the HTML for the given chart.
*
* @param string $args JSON from the calling AJAX function.
* @return string $chartdata The generated chart.
*/
function local_assessfreq_output_fragment_get_quiz_inprogress_chart($args): string {
$allowedcalls = [
'upcomming_quizzes',
'all_participants_inprogress',
];
$context = $args['context'];
has_capability('moodle/site:config', $context);
$data = json_decode($args['data']);
if (in_array($data->call, $allowedcalls)) {
$classname = '\\local_assessfreq\\output\\' . $data->call;
$methodname = 'get_' . $data->call . '_chart';
} else {
throw new moodle_exception('Call not allowed');
}
$assesschart = new $classname();
$now = time();
if ($methodname == 'get_all_participants_inprogress_chart') {
$chart = $assesschart->$methodname($now, $data->hoursahead, $data->hoursbehind);
} else {
$chart = $assesschart->$methodname($now);
}
$chartdata = json_encode($chart);
return $chartdata;
}
/**
* Renders the quiz search form for the modal on the quiz dashboard.
*
* @param array $args
* @return string $o Form HTML.
*/
function local_assessfreq_output_fragment_new_base_form($args): string {
$context = $args['context'];
has_capability('moodle/site:config', $context);
$mform = new \local_assessfreq\form\quiz_search_form(null, null, 'post', '', ['class' => 'ignoredirty']);
ob_start();
$mform->display();
$o = ob_get_contents();
ob_end_clean();
return $o;
}
/**
* Renders the student table on the quiz dashboard screen.
* We update the table via ajax.
*
* @param array $args
* @return string $o Form HTML.
*/
function local_assessfreq_output_fragment_get_student_table($args): string {
global $CFG, $PAGE;
$context = $args['context'];
has_capability('moodle/site:config', $context);
$data = json_decode($args['data']);
$baseurl = $CFG->wwwroot . '/local/assessfreq/dashboard_quiz.php';
$output = $PAGE->get_renderer('local_assessfreq');
$o = $output->render_student_table($baseurl, $data->quiz, $context->id, $data->search, $data->page);
return $o;
}
/**
* Renders the student table on the student search screen.
* We update the table via ajax.
*
* @param array $args
* @return string $o Form HTML.
*/
function local_assessfreq_output_fragment_get_student_search_table($args): string {
global $CFG, $PAGE;
$context = $args['context'];
has_capability('moodle/site:config', $context);
$data = json_decode($args['data']);
$search = is_null($data->search) ? '' : $data->search;
$now = time();
$hoursahead = (int)$data->hoursahead;
$hoursbehind = (int)$data->hoursbehind;
$baseurl = $CFG->wwwroot . '/local/assessfreq/student_search.php';
$output = $PAGE->get_renderer('local_assessfreq');
$o = $output->render_student_search_table($baseurl, $context->id, $search, $hoursahead, $hoursbehind, $now, $data->page);
return $o;
}
/**
* Renders the quizzes in progress "table" on the quiz dashboard screen.
* We update the table via ajax.
* The table isn't a real table it's a collection of divs.
*
* @param array $args
* @return string $o Form HTML.
*/
function local_assessfreq_output_fragment_get_quizzes_inprogress_table($args): string {
global $PAGE;
$context = $args['context'];
has_capability('moodle/site:config', $context);
$data = json_decode($args['data']);
$search = is_null($data->search) ? '' : $data->search;
$sorton = is_null($data->sorton) ? 'name' : $data->sorton;
$direction = is_null($data->direction) ? 'asc' : $data->direction;
$hoursahead = (int)$data->hoursahead;
$hoursbehind = (int)$data->hoursbehind;
$output = $PAGE->get_renderer('local_assessfreq');
$o = $output->render_quizzes_inprogress_table($search, $data->page, $sorton, $direction, $hoursahead, $hoursbehind);
return $o;
}
/**
* Renders the quiz user override form for the modal on the quiz dashboard.
*
* @param array $args
* @return string $o Form HTML.
*/
function local_assessfreq_output_fragment_new_override_form($args): string {
global $DB;
$context = $args['context'];
has_capability('mod/quiz:manageoverrides', $context);
$serialiseddata = json_decode($args['jsonformdata'], true);
$formdata = [];
if (!empty($serialiseddata)) {
parse_str($serialiseddata, $formdata);
}
// Get some data needed to generate the form.
$quizid = $args['quizid'];
$quizdata = new \local_assessfreq\quiz();
$quizcontext = $quizdata->get_quiz_context($quizid);
$quiz = $DB->get_record('quiz', ['id' => $quizid], '*', MUST_EXIST);
$cm = get_course_and_cm_from_cmid($quizcontext->instanceid, 'quiz')[1];
// Check if we have an existing override for this user.
$override = $DB->get_record('quiz_overrides', ['quiz' => $quiz->id, 'userid' => $args['userid']]);
if ($override) {
$data = clone $override;
} else {
$data = new \stdClass();
$data->userid = $args['userid'];
}
$mform = new \local_assessfreq\form\quiz_override_form($cm, $quiz, $quizcontext, $override, $formdata);
$mform->set_data($data);
if (!empty($serialiseddata)) {
// If we were passed non-empty form data we want the mform to call validation functions and show errors.
$mform->is_validated();
}
ob_start();
$mform->display();
$o = ob_get_contents();
ob_end_clean();
return $o;
}