forked from catalyst/moodle-mod_subcourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom_completion.php
86 lines (76 loc) · 2.67 KB
/
custom_completion.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
<?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/>.
declare(strict_types=1);
namespace mod_subcourse\completion;
/**
* Custom completion rules for mod_subcourse
*
* @package mod_subcourse
* @copyright Catalyst IT
* @author Dan Marsden
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class custom_completion extends \core_completion\activity_custom_completion {
/**
* Returns completion state of the custom completion rules
*
* @param string $rule
*
* @return integer
* @throws \dml_exception
*/
public function get_state(string $rule): int {
global $CFG, $DB, $USER;
require_once($CFG->dirroot . '/completion/completion_completion.php');
$this->validate_rule($rule);
$subcourse = $DB->get_record('subcourse', ['id' => $this->cm->instance]);
// Check if the referenced course is completed.
$coursecompletion = new \completion_completion();
$coursecompletion->userid = $USER->id;
$coursecompletion->course = $subcourse->refcourse;
return $coursecompletion->is_complete() ? COMPLETION_COMPLETE : COMPLETION_INCOMPLETE;
}
/**
* Fetch the list of custom completion rules that this module defines.
*
* @return array
*/
public static function get_defined_custom_rules(): array {
return ['completionrefcourse'];
}
/**
* Returns an associative array of the descriptions of custom completion rules.
*
* @return array
* @throws \coding_exception
*/
public function get_custom_rule_descriptions(): array {
return ['completionrefcourse' => get_string('completionrefcourse', 'subcourse')];
}
/**
* Returns an array of all completion rules, in the order they should be displayed to users.
*
* @return array
*/
public function get_sort_order(): array {
return [
'completionview',
'completionusegrade',
'completionpassgrade',
'completionrefcourse',
];
}
}