-
Notifications
You must be signed in to change notification settings - Fork 41
/
lib.php
446 lines (383 loc) · 14.3 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
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
<?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/>.
/**
* Library of functions, classes and constants for module subcourse
*
* @package mod_subcourse
* @copyright 2008 David Mudrak <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
/**
* Returns the information if the module supports a feature
*
* @see plugin_supports() in lib/moodlelib.php
* @param string $feature FEATURE_xx constant for requested feature
* @return mixed true if the feature is supported, null if unknown
*/
function subcourse_supports($feature) {
if (defined('FEATURE_MOD_PURPOSE')) {
if ($feature === FEATURE_MOD_PURPOSE) {
return MOD_PURPOSE_CONTENT;
}
}
switch($feature) {
case FEATURE_GRADE_HAS_GRADE:
return true;
case FEATURE_MOD_INTRO:
return true;
case FEATURE_SHOW_DESCRIPTION:
return true;
case FEATURE_GROUPS:
return true;
case FEATURE_GROUPINGS:
return true;
case FEATURE_GROUPMEMBERSONLY:
return true;
case FEATURE_BACKUP_MOODLE2:
return true;
case FEATURE_COMPLETION_TRACKS_VIEWS:
return true;
case FEATURE_COMPLETION_HAS_RULES:
return true;
default:
return null;
}
}
/**
* Given an object containing all the necessary data, (defined by the form)
* this function will create a new instance and return the id number of the new
* instance.
*
* @param stdClass $subcourse
* @return int The id of the newly inserted subcourse record
*/
function subcourse_add_instance(stdClass $subcourse) {
global $CFG, $DB;
require_once($CFG->dirroot.'/mod/subcourse/locallib.php');
$subcourse->timecreated = time();
if (empty($subcourse->instantredirect)) {
$subcourse->instantredirect = 0;
}
if (empty($subcourse->blankwindow)) {
$subcourse->blankwindow = 0;
}
if (empty($subcourse->coursepageprintprogress)) {
$subcourse->coursepageprintprogress = 0;
}
if (empty($subcourse->coursepageprintgrade)) {
$subcourse->coursepageprintgrade = 0;
}
$newid = $DB->insert_record("subcourse", $subcourse);
if (!empty($subcourse->refcourse)) {
// Create grade_item but do not fetch grades.
// The context does not exist yet and we can't get users by capability.
subcourse_grades_update($subcourse->course, $newid, $subcourse->refcourse, $subcourse->name, true);
}
if (!empty($subcourse->completionexpected)) {
\core_completion\api::update_completion_date_event($subcourse->coursemodule, 'subcourse', $newid,
$subcourse->completionexpected);
}
return $newid;
}
/**
* Given an object containing all the necessary data, (defined by the form)
* this function will update an existing instance with new data.
*
* @param stdClass $subcourse
* @return boolean success/failure
*/
function subcourse_update_instance(stdClass $subcourse) {
global $CFG, $DB;
require_once($CFG->dirroot.'/mod/subcourse/locallib.php');
$cmid = $subcourse->coursemodule;
$subcourse->timemodified = time();
$subcourse->id = $subcourse->instance;
if (!empty($subcourse->refcoursecurrent)) {
unset($subcourse->refcourse);
}
if (empty($subcourse->instantredirect)) {
$subcourse->instantredirect = 0;
}
if (empty($subcourse->blankwindow)) {
$subcourse->blankwindow = 0;
}
if (empty($subcourse->coursepageprintprogress)) {
$subcourse->coursepageprintprogress = 0;
}
if (empty($subcourse->coursepageprintgrade)) {
$subcourse->coursepageprintgrade = 0;
}
$DB->update_record('subcourse', $subcourse);
if (!empty($subcourse->refcourse)) {
if (has_capability('mod/subcourse:fetchgrades', context_module::instance($cmid))) {
subcourse_grades_update($subcourse->course, $subcourse->id, $subcourse->refcourse, $subcourse->name,
false, false, [], $subcourse->fetchpercentage);
subcourse_update_timefetched($subcourse->id);
}
}
\core_completion\api::update_completion_date_event($cmid, 'subcourse', $subcourse->id, $subcourse->completionexpected);
return true;
}
/**
* Given an ID of an instance of this module,
* this function will permanently delete the instance
* and any data that depends on it.
*
* @param int $id Id of the module instance
* @return boolean success/failure
*/
function subcourse_delete_instance($id) {
global $CFG, $DB;
require_once($CFG->libdir.'/gradelib.php');
// Check the instance exists.
if (!$subcourse = $DB->get_record("subcourse", ["id" => $id])) {
return false;
}
// Remove the instance record.
$DB->delete_records("subcourse", ["id" => $subcourse->id]);
// Clean up the gradebook items.
grade_update('mod/subcourse', $subcourse->course, 'mod', 'subcourse', $subcourse->id, 0, null, ['deleted' => true]);
return true;
}
/**
* Must return an array of user records (all data) who are participants
* for a given instance of subcourse. Must include every user involved
* in the instance, independient of his role (student, teacher, admin...)
* See other modules as example.
*
* @param int $subcourseid ID of an instance of this module
* @return mixed boolean/array of students
*/
function subcourse_get_participants($subcourseid) {
return false;
}
/**
* Return a small object with summary information about what a
* user has done with a given particular instance of this module
* Used for user activity reports.
* $return->time = the time they did it
* $return->info = a short text description
*
* @param stdClass $course The course record.
* @param stdClass $user The user record.
* @param cm_info|stdClass $mod The course module info object or record.
* @param stdClass $subcourse The subcourse instance record.
* @return null
*/
function subcourse_user_outline($course, $user, $mod, $subcourse) {
return true;
}
/**
* Print a detailed representation of what a user has done with
* a given particular instance of this module, for user activity reports.
*
* @param stdClass $course The course record.
* @param stdClass $user The user record.
* @param cm_info|stdClass $mod The course module info object or record.
* @param stdClass $subcourse The subcourse instance record.
* @return boolean
*/
function subcourse_user_complete($course, $user, $mod, $subcourse) {
return true;
}
/**
* Given a course and a time, this module should find recent activity
* that has occurred in subcourse activities and print it out.
* Return true if there was output, or false is there was none.
*
* @param stdClass $course
* @param bool $viewfullnames
* @param int $timestart
* @return boolean true if anything was printed, otherwise false
*/
function subcourse_print_recent_activity($course, $viewfullnames, $timestart) {
return false;
}
/**
* Is a scale used by the given subcourse instance?
*
* The subcourse itself does not generate grades so we always return
* false here in order not to block the scale removal.
*
* @param int $subcourseid id of an instance of this module
* @param int $scaleid
* @return bool
*/
function subcourse_scale_used($subcourseid, $scaleid) {
return false;
}
/**
* Is a scale used by some subcourse instance?
*
* The subcourse itself does not generate grades so we always return
* false here in order not to block the scale removal.
*
* @param int $scaleid
* @return boolean True if the scale is used by any subcourse
*/
function subcourse_scale_used_anywhere($scaleid) {
return false;
}
/**
* This will provide summary info about the user's grade in the subcourse below the link on
* the course/view.php page
*
* @param cm_info $cm
* @return void
*/
function mod_subcourse_cm_info_view(cm_info $cm) {
global $CFG, $USER, $DB;
if (isset($cm->customdata->coursepageprintgrade) && isset($cm->customdata->coursepageprintprogress)) {
$displayoptions = (object) [
'coursepageprintgrade' => $cm->customdata->coursepageprintgrade,
'coursepageprintprogress' => $cm->customdata->coursepageprintprogress,
];
} else {
// This is unexpected - the customdata should be set in {@see subcourse_get_coursemodule_info()}.
$displayoptions = $DB->get_record('subcourse', ['id' => $cm->instance], 'coursepageprintgrade, coursepageprintprogress');
}
$html = '';
if ($displayoptions->coursepageprintprogress) {
$sql = "SELECT r.*
FROM {course} r
JOIN {subcourse} s ON s.refcourse = r.id
WHERE s.id = :subcourseid";
$refcourse = $DB->get_record_sql($sql, ['subcourseid' => $cm->instance], IGNORE_MISSING);
$percentage = null;
if ($refcourse) {
$percentage = \core_completion\progress::get_course_progress_percentage($refcourse);
}
if ($percentage !== null) {
$percentage = floor($percentage);
$html .= html_writer::tag('div', get_string('currentprogress', 'subcourse', $percentage),
['class' => 'contentafterlink']);
}
}
if ($displayoptions->coursepageprintgrade) {
require_once($CFG->libdir.'/gradelib.php');
$grades = grade_get_grades($cm->course, 'mod', 'subcourse', $cm->instance, $USER->id);
$currentgrade = (empty($grades->items[0]->grades)) ? null : reset($grades->items[0]->grades);
if (($currentgrade !== null) && isset($currentgrade->grade) && !($currentgrade->hidden)) {
$strgrade = $currentgrade->str_grade;
$html .= html_writer::tag('div', get_string('currentgrade', 'subcourse', $strgrade),
['class' => 'contentafterlink']);
}
}
if ($html !== '') {
$cm->set_after_link($html);
}
}
/**
* Return the action associated with the given calendar event, or null if there is none.
*
* This is used by block_myoverview in order to display the event appropriately. If null is returned then the event
* is not displayed on the block.
*
* @param calendar_event $event
* @param \core_calendar\action_factory $factory
* @return \core_calendar\local\event\entities\action_interface|null
*/
function mod_subcourse_core_calendar_provide_event_action(calendar_event $event, \core_calendar\action_factory $factory) {
$cm = get_fast_modinfo($event->courseid)->instances['subcourse'][$event->instance];
return $factory->create_instance(
get_string('view'),
new \moodle_url('/mod/subcourse/view.php', ['id' => $cm->id]),
1,
true
);
}
/**
* Given a course_module object, this function returns any
* "extra" information that may be needed when printing
* this activity in a course listing.
*
* See {@see get_array_of_activities()} in course/lib.php
*
* @param object $coursemodule
* @return cached_cm_info info
*/
function subcourse_get_coursemodule_info($coursemodule) {
global $CFG, $DB;
$subcourse = $DB->get_record('subcourse', ['id' => $coursemodule->instance],
'id, name, intro, introformat, instantredirect, blankwindow, coursepageprintgrade, coursepageprintprogress');
if (!$subcourse) {
return null;
}
$info = new cached_cm_info();
$info->name = $subcourse->name;
$info->customdata = (object) [
'coursepageprintgrade' => $subcourse->coursepageprintgrade,
'coursepageprintprogress' => $subcourse->coursepageprintprogress,
];
if ($subcourse->instantredirect && $subcourse->blankwindow) {
$url = new moodle_url('/mod/subcourse/view.php', ['id' => $coursemodule->id, 'isblankwindow' => 1]);
$info->onclick = "window.open('".$url->out(false)."'); return false;";
}
if ($coursemodule->showdescription) {
// Set content from intro and introformat. Filters are disabled because we filter with format_text at display time.
$info->content = format_module_intro('subcourse', $subcourse, $coursemodule->id, false);
}
return $info;
}
/**
* Create or update the grade item for given subcourse
*
* @category grade
* @param object $subcourse object
* @param mixed $grades optional array/object of grade(s); 'reset' means reset grades in gradebook
* @return int 0 if ok, error code otherwise
*/
function subcourse_grade_item_update($subcourse, $grades = null) {
global $CFG;
require_once($CFG->dirroot . '/mod/subcourse/locallib.php');
$reset = false;
if ($grades === 'reset') {
$reset = true;
}
$gradeitemonly = true;
if (!empty($grades)) {
$gradeitemonly = false;
}
return subcourse_grades_update($subcourse->course, $subcourse->id, $subcourse->refcourse,
$subcourse->name, $gradeitemonly, $reset);
}
/**
* Update activity grades.
*
* @param stdClass $subcourse subcourse record
* @param int $userid specific user only, 0 means all
* @param bool $nullifnone - not used
*/
function subcourse_update_grades($subcourse, $userid=0, $nullifnone=true) {
global $CFG;
require_once($CFG->dirroot . '/mod/subcourse/locallib.php');
require_once($CFG->libdir.'/gradelib.php');
if ($subcourse->refcourse) {
$refgrades = subcourse_fetch_refgrades($subcourse->id, $subcourse->refcourse, false, $userid, false);
} else {
// Prevent empty referenced course id coding error.
return GRADE_UPDATE_FAILED;
}
if ($refgrades && $refgrades->grades) {
if (!empty($refgrades->localremotescale)) {
// Unable to fetch remote grades - local scale is used in the remote course.
return GRADE_UPDATE_FAILED;
}
return subcourse_grade_item_update($subcourse, $refgrades->grades);
} else {
return subcourse_grade_item_update($subcourse);
}
}