This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
locallib.php
448 lines (390 loc) · 14.8 KB
/
locallib.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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<?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/>.
/**
* Block "course overview (campus)" - Local library
*
* @package block_course_overview_campus
* @copyright 2013 Alexander Bias, Ulm University <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
// @codingStandardsIgnoreFile
// Let codechecker ignore this file. This legacy code is not fully compliant to Moodle coding style but working and well documented.
/**
* Get my courses from DB
*
* @return array
*/
function block_course_overview_campus_get_my_courses() {
// Get my courses in alphabetical order.
$courses = enrol_get_my_courses('id, shortname', 'fullname ASC');
// Remove frontpage course, if enrolled, from courses list.
$site = get_site();
if (array_key_exists($site->id, $courses)) {
unset($courses[$site->id]);
}
return $courses;
}
/**
* Check if course is hidden according to the hide courses feature
*
* @param course $course
* @return boolean
*/
function block_course_overview_campus_course_hidden_by_hidecourses($course) {
// Course is visible if it isn't hidden.
if (get_user_preferences('block_course_overview_campus-hidecourse-'.$course->id, 0) == 0) {
return false;
// Otherwise it is hidden.
} else {
return true;
}
}
/**
* Check if course is hidden according to the term course filter
*
* @param course $course
* @param string $selectedterm
* @return boolean
*/
function block_course_overview_campus_course_hidden_by_termcoursefilter($course, $selectedterm) {
// Course is visible if it is within selected term or all terms are selected.
if ($course->term == $selectedterm || $selectedterm == 'all') {
return false;
// Otherwise it is hidden.
} else {
return true;
}
}
/**
* Check if course is hidden according to the parent category course filter
*
* @param course $course
* @param string $selectedcategory
* @return boolean
*/
function block_course_overview_campus_course_hidden_by_categorycoursefilter($course, $selectedcategory) {
// Course is visible if it is within selected parent category or all categories are selected.
if ($course->categoryid == $selectedcategory || $selectedcategory == 'all') {
return false;
// Otherwise it is hidden.
} else {
return true;
}
}
/**
* Check if course is hidden according to the top level category course filter
*
* @param course $course
* @param string $selectedtoplevelcategory
* @return boolean
*/
function block_course_overview_campus_course_hidden_by_toplevelcategorycoursefilter($course, $selectedtoplevelcategory) {
// Course is visible if it is within selected top level category or all categories are selected.
if ($course->toplevelcategoryid == $selectedtoplevelcategory || $selectedtoplevelcategory == 'all') {
return false;
// Otherwise it is hidden.
} else {
return true;
}
}
/**
* Check if course is visible according to the teacher course filter
*
* @param course $course
* @param string $selectedteacher
* @return boolean
*/
function block_course_overview_campus_course_hidden_by_teachercoursefilter($course, $selectedteacher) {
// Course is visible if it has the selected teacher or all teachers are selected.
if (isset($course->teachers[$selectedteacher]) || $selectedteacher == 'all') {
return false;
// Otherwise it is hidden.
} else {
return true;
}
}
/**
* Check if course is hidden according to any (preprocessed!) filter
*
* @param course $course
* @return boolean
*/
function block_course_overview_campus_course_hidden_by_anyfilter($course) {
// Check if there is any reason to hide the course.
$hidecourse = (isset($course->termcoursefiltered) && $course->termcoursefiltered) ||
(isset($course->categorycoursefiltered) && $course->categorycoursefiltered == true) ||
(isset($course->toplevelcategorycoursefiltered) && $course->toplevelcategorycoursefiltered == true) ||
(isset($course->teachercoursefiltered) && $course->teachercoursefiltered == true);
return $hidecourse;
}
/**
* Check if the configured term dates make sense
*
* @return bool
*/
function block_course_overview_campus_check_term_config() {
$coc_config = get_config('block_course_overview_campus');
if ($coc_config->termmode == 1) {
return true;
} else if ($coc_config->termmode == 2 &&
intval(date('z', strtotime('2003-'.$coc_config->term1startday))) <
intval(date('z', strtotime('2003-'.$coc_config->term2startday)))) {
return true;
} else if ($coc_config->termmode == 3 &&
intval(date('z', strtotime('2003-'.$coc_config->term1startday))) <
intval(date('z', strtotime('2003-'.$coc_config->term2startday))) &&
intval(date('z', strtotime('2003-'.$coc_config->term2startday))) <
intval(date('z', strtotime('2003-'.$coc_config->term3startday)))) {
return true;
} else if ($coc_config->termmode == 4 &&
intval(date('z', strtotime('2003-'.$coc_config->term1startday))) <
intval(date('z', strtotime('2003-'.$coc_config->term2startday))) &&
intval(date('z', strtotime('2003-'.$coc_config->term2startday))) <
intval(date('z', strtotime('2003-'.$coc_config->term3startday))) &&
intval(date('z', strtotime('2003-'.$coc_config->term3startday))) <
intval(date('z', strtotime('2003-'.$coc_config->term4startday)))) {
return true;
} else {
return false;
}
}
/**
* Take array of teacher objects and return a string of names, sorted by relevance and name
*
* @param array $teachers array of teachers
* @return string string with concatenated teacher names
*/
function block_course_overview_campus_get_teachername_string($teachers) {
$coc_config = get_config('block_course_overview_campus');
// If given array is empty, return empty string.
if (empty($teachers)) {
return '';
}
// Sort all teachers by relevance and name, return empty string when sorting fails.
$success = usort($teachers, "block_course_overview_campus_compare_teachers");
if (!$success) {
return '';
}
// Get all teachers' names as an array according the teacher name style setting.
$teachernames = array_map(function($obj) {
global $coc_config;
// Display fullname.
if ($coc_config->secondrowshowteachernamestyle == 1) {
return $obj->firstname.' '.$obj->lastname;
}
// Display lastname.
else if ($coc_config->secondrowshowteachernamestyle == 2) {
return $obj->lastname;
}
// Display firstname.
else if ($coc_config->secondrowshowteachernamestyle == 3) {
return $obj->firstname;
}
// Display fullnamedisplay.
else if ($coc_config->secondrowshowteachernamestyle == 4) {
return fullname($obj);
}
// Fallback: Display lastname.
else {
return $obj->lastname;
}
}, $teachers);
// Implode teachers' names to a single string.
$teachernames = implode(", ", $teachernames);
return $teachernames;
}
/**
* Take term name and year(s) and return displayname for term filter based on plugin configuration
*
* @param string $termname The term's name
* @param string $year The term's year
* @param string $year2 The term's second year (optional)
* @return string String with the term's displayname
*/
function block_course_overview_campus_get_term_displayname($termname, $year, $year2='') {
$coc_config = get_config('block_course_overview_campus');
// Build the first year - second year combination.
$displayname = $year;
if ($year2 != '') {
// Hyphen separation.
if ($coc_config->termyearseparation == 1) {
$displayname = $year.'-'.$year2;
}
// Slash separation.
else if ($coc_config->termyearseparation == 2) {
$displayname = $year.'/'.$year2;
}
// Underscore separation.
else if ($coc_config->termyearseparation == 3) {
$displayname = $year.'_'.$year2;
}
// No second year.
else if ($coc_config->termyearseparation == 4) {
$displayname = $year;
}
// This shouldn't happen.
else {
$displayname = $year.'/'.$year2;
}
}
// Add the term name.
// Prefix with space.
if ($coc_config->termyearpos == 1) {
$displayname = $displayname.' '.$termname;
}
// Prefix without space.
else if ($coc_config->termyearpos == 2) {
$displayname = $displayname.$termname;
}
// Suffix with space.
else if ($coc_config->termyearpos == 3) {
$displayname = $termname.' '.$displayname;
}
// Suffix without space.
else if ($coc_config->termyearpos == 4) {
$displayname = $termname.$displayname;
}
// This shouldn't happen.
else {
$displayname = $termname. ' '.$termname;
}
return $displayname;
}
/**
* Compare teacher by relevance helper function
*
* @param object $a Teacher A
* @param object $b Teacher B
* @return int
*/
function block_course_overview_campus_compare_teachers($a, $b) {
// Compare relevance of teachers' roles.
if ($a->sortorder < $b->sortorder) {
return -1;
} else if ($a->sortorder > $b->sortorder) {
return 1;
} else if ($a->sortorder == $b->sortorder) {
// Teachers' roles are equal, then compare lastnames.
return strcasecmp($a->lastname, $b->lastname);
} else {
// This should never happen.
return 0;
}
}
/**
* Compare category by sortorder helper function
*
* @param object $a Category A
* @param object $b Category B
* @return int
*/
function block_course_overview_campus_compare_categories($a, $b) {
// Compare sortorder of categories.
if ($a->sortorder < $b->sortorder) {
return -1;
} else if ($a->sortorder > $b->sortorder) {
return 1;
} else if ($a->sortorder == $b->sortorder) {
// Category sortorders are equal - this shouldn't happen, but if it does then compare category names alphabetically.
return strcasecmp(format_string($a->name), format_string($b->name));
} else {
// This should never happen.
return 0;
}
}
/**
* Remember the not shown courses for local_boostcoc
*
* Basically, this is remembered by the JavaScript filters directly when they are applied in the browser, but we want a fallback
* when javascript is off
* Unfortunately, at page load local_boostcoc can only change the nav drawer _before_ this function can store its data, thus the
* fallback when javascript is off has a lag.
*
* @param array $courses
*/
function block_course_overview_campus_remember_notshowncourses_for_local_boostcoc($courses) {
// Do only if local_boostcoc is installed.
if (block_course_overview_campus_check_local_boostcoc() == true) {
// Get all courses which are not shown (because they are hidden by any filter or by the hide courses feature)
// and store their IDs in an array.
$notshowncourses = array();
foreach ($courses as $c) {
if ((block_course_overview_campus_course_hidden_by_anyfilter($c) == true ||
block_course_overview_campus_course_hidden_by_hidecourses($c)) == true) {
$notshowncourses[] = $c->id;
}
}
// Convert not shown courses array to JSON.
$jsonstring = json_encode($notshowncourses);
// Store the current status of not shown courses.
set_user_preference('local_boostcoc-notshowncourses', $jsonstring);
}
}
/**
* Remember the active filters for local_boostcoc
*
* Basically, this is remembered by the JavaScript filters directly when they are applied in the browser, but we want a fallback
* when javascript is off.
* Unfortunately, at page load local_boostcoc can only change the nav drawer _before_ this function can store its data, thus the
* fallback when javascript is off has a lag.
*
* @param int $hiddencoursescounter
*/
function block_course_overview_campus_remember_activefilters_for_local_boostcoc($hiddencoursescounter) {
// Do only if local_boostcoc is installed.
if (block_course_overview_campus_check_local_boostcoc() == true) {
$coc_config = get_config('block_course_overview_campus');
// Check all filters if they are enabled and active filters (value != all) and check the fact that there are hidden courses and store them in an array.
$activefilters = array();
if ($coc_config->termcoursefilter == true && get_user_preferences('block_course_overview_campus-selectedterm') != 'all') {
$activefilters[] = 'filterterm';
}
if ($coc_config->categorycoursefilter == true && get_user_preferences('block_course_overview_campus-selectedcategory') != 'all') {
$activefilters[] = 'filtercategory';
}
if ($coc_config->toplevelcategorycoursefilter == true && get_user_preferences('block_course_overview_campus-selectedtoplevelcategory') != 'all') {
$activefilters[] = 'filtertoplevelcategory';
}
if ($coc_config->teachercoursefilter == true && get_user_preferences('block_course_overview_campus-selectedteacher') != 'all') {
$activefilters[] = 'filterteacher';
}
if ($hiddencoursescounter > 0) {
$activefilters[] = 'hidecourses';
}
// Convert active filters array to JSON.
$jsonstring = json_encode($activefilters);
// Store the current status of active filters.
set_user_preference('local_boostcoc-activefilters', $jsonstring);
}
}
/**
* Check if our companion plugin local_boostcoc is installed
*
* @return boolean
*/
function block_course_overview_campus_check_local_boostcoc() {
global $CFG;
static $local_boostcoc_installed;
if (!isset($local_boostcoc_installed)) {
if (file_exists($CFG->dirroot.'/local/boostcoc/lib.php')) {
$local_boostcoc_installed = true;
} else {
$local_boostcoc_installed = false;
}
}
return $local_boostcoc_installed;
}