2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Course completion critieria - completion on achieving course grade
20 * @package core_completion
21 * @category completion
22 * @copyright 2009 Catalyst IT Ltd
23 * @author Aaron Barnes <aaronb@catalyst.net.nz>
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') ||
die();
28 require_once $CFG->dirroot
.'/grade/lib.php';
29 require_once $CFG->dirroot
.'/grade/querylib.php';
32 * Course completion critieria - completion on achieving course grade
34 * @package core_completion
35 * @category completion
36 * @copyright 2009 Catalyst IT Ltd
37 * @author Aaron Barnes <aaronb@catalyst.net.nz>
38 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40 class completion_criteria_grade
extends completion_criteria
{
42 /* @var int Criteria type constant [COMPLETION_CRITERIA_TYPE_GRADE] */
43 public $criteriatype = COMPLETION_CRITERIA_TYPE_GRADE
;
46 * Finds and returns a data_object instance based on params.
48 * @param array $params associative array varname => value of various
49 * parameters used to fetch data_object
50 * @return data_object data_object instance or false if none found.
52 public static function fetch($params) {
53 $params['criteriatype'] = COMPLETION_CRITERIA_TYPE_GRADE
;
54 return self
::fetch_helper('course_completion_criteria', __CLASS__
, $params);
58 * Add appropriate form elements to the critieria form
60 * @param moodle_form $mform Moodle forms object
61 * @param stdClass $data containing default values to be set in the form
63 public function config_form_display(&$mform, $data = null) {
64 $mform->addElement('checkbox', 'criteria_grade', get_string('enable'));
65 $mform->addElement('text', 'criteria_grade_value', get_string('graderequired', 'completion'));
66 $mform->setDefault('criteria_grade_value', $data);
67 $mform->addElement('static', 'criteria_grade_value_note', '', get_string('criteriagradenote', 'completion'));
70 $mform->setDefault('criteria_grade', 1);
71 $mform->setDefault('criteria_grade_value', $this->gradepass
);
76 * Update the criteria information stored in the database
78 * @param stdClass $data Form data
80 public function update_config(&$data) {
83 if (!empty($data->criteria_grade
) && is_numeric($data->criteria_grade_value
))
85 $this->course
= $data->id
;
86 $this->gradepass
= $data->criteria_grade_value
;
92 * Get user's course grade in this course
94 * @param completion_completion $completion an instance of completion_completion class
97 private function get_grade($completion) {
98 $grade = grade_get_course_grade($completion->userid
, $this->course
);
103 * Review this criteria and decide if the user has completed
105 * @param completion_completion $completion The user's completion record
106 * @param bool $mark Optionally set false to not save changes to database
109 public function review($completion, $mark = true) {
110 // Get user's course grade
111 $grade = $this->get_grade($completion);
113 // If user's current course grade is higher than the required pass grade
114 if ($this->gradepass
&& $this->gradepass
<= $grade) {
116 $completion->gradefinal
= $grade;
117 $completion->mark_complete();
127 * Return criteria title for display in reports
131 public function get_title() {
132 return get_string('coursegrade', 'completion');
136 * Return a more detailed criteria title for display in reports
140 public function get_title_detailed() {
141 $graderequired = round($this->gradepass
, 2).'%';
142 return get_string('gradexrequired', 'completion', $graderequired);
146 * Return criteria type title for display in reports
150 public function get_type_title() {
151 return get_string('grade');
155 * Return criteria status text for display in reports
157 * @param completion_completion $completion The user's completion record
160 public function get_status($completion) {
161 $grade = $this->get_grade($completion);
162 $graderequired = $this->get_title_detailed();
165 $grade = round($grade, 2).'%';
167 $grade = get_string('nograde');
170 return $grade.' ('.$graderequired.')';
174 * Find user's who have completed this criteria
176 public function cron() {
179 // Get all users who meet this criteria
185 gg.finalgrade AS gradefinal,
186 gg.timemodified AS timecompleted
188 {course_completion_criteria} cr
194 ON con.instanceid = c.id
196 {role_assignments} ra
197 ON ra.contextid = con.id
200 ON gi.courseid = c.id
201 AND gi.itemtype = \'course\'
205 AND gg.userid = ra.userid
207 {course_completion_crit_compl} cc
208 ON cc.criteriaid = cr.id
209 AND cc.userid = ra.userid
211 cr.criteriatype = '.COMPLETION_CRITERIA_TYPE_GRADE
.'
212 AND con.contextlevel = '.CONTEXT_COURSE
.'
213 AND c.enablecompletion = 1
215 AND gg.finalgrade >= cr.gradepass
218 // Loop through completions, and mark as complete
219 $rs = $DB->get_recordset_sql($sql);
220 foreach ($rs as $record) {
221 $completion = new completion_criteria_completion((array) $record, DATA_OBJECT_FETCH_BY_KEY
);
222 $completion->mark_complete($record->timecompleted
);
228 * Return criteria progress details for display in reports
230 * @param completion_completion $completion The user's completion record
231 * @return array An array with the following keys:
232 * type, criteria, requirement, status
234 public function get_details($completion) {
236 $details['type'] = get_string('coursegrade', 'completion');
237 $details['criteria'] = get_string('graderequired', 'completion');
238 $details['requirement'] = round($this->gradepass
, 2).'%';
239 $details['status'] = '';
241 $grade = round($this->get_grade($completion), 2);
243 $details['status'] = $grade.'%';