MDL-61899 tool_dataprivacy: Delete user after deletion request or expired context
[moodle.git] / completion / criteria / completion_criteria_date.php
blobe3fbb6d4ab7cb7b5fb9e6ab0532bcc11869ef4b8
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
17 /**
18 * This file contains the date criteria type
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();
29 /**
30 * Course completion critieria - completion on specified date
32 * @package core_completion
33 * @category completion
34 * @copyright 2009 Catalyst IT Ltd
35 * @author Aaron Barnes <aaronb@catalyst.net.nz>
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 class completion_criteria_date extends completion_criteria {
40 /* @var int Criteria type constant [COMPLETION_CRITERIA_TYPE_DATE] */
41 public $criteriatype = COMPLETION_CRITERIA_TYPE_DATE;
43 /**
44 * Finds and returns a data_object instance based on params.
46 * @param array $params associative arrays varname=>value
47 * @return data_object data_object instance or false if none found.
49 public static function fetch($params) {
50 $params['criteriatype'] = COMPLETION_CRITERIA_TYPE_DATE;
51 return self::fetch_helper('course_completion_criteria', __CLASS__, $params);
54 /**
55 * Add appropriate form elements to the critieria form
57 * @param moodleform $mform Moodle forms object
58 * @param stdClass $data not used
60 public function config_form_display(&$mform, $data = null) {
61 $mform->addElement('checkbox', 'criteria_date', get_string('enable'));
62 $mform->addElement('date_selector', 'criteria_date_value', get_string('completionondatevalue', 'core_completion'));
63 $mform->disabledIf('criteria_date_value', 'criteria_date');
65 // If instance of criteria exists
66 if ($this->id) {
67 $mform->setDefault('criteria_date', 1);
68 $mform->setDefault('criteria_date_value', $this->timeend);
69 } else {
70 $mform->setDefault('criteria_date_value', time() + 3600 * 24);
74 /**
75 * Update the criteria information stored in the database
77 * @param stdClass $data Form data
79 public function update_config(&$data) {
80 if (!empty($data->criteria_date)) {
81 $this->course = $data->id;
82 $this->timeend = $data->criteria_date_value;
83 $this->insert();
87 /**
88 * Review this criteria and decide if the user has completed
90 * @param completion_completion $completion The user's completion record
91 * @param bool $mark Optionally set false to not save changes to database
92 * @return bool
94 public function review($completion, $mark = true) {
95 // If current time is past timeend
96 if ($this->timeend && $this->timeend < time()) {
97 if ($mark) {
98 $completion->mark_complete();
101 return true;
103 return false;
107 * Return criteria title for display in reports
109 * @return string
111 public function get_title() {
112 return get_string('date');
116 * Return a more detailed criteria title for display in reports
118 * @return string
120 public function get_title_detailed() {
121 return userdate($this->timeend, '%d-%h-%y');
125 * Return criteria type title for display in reports
127 * @return string
129 public function get_type_title() {
130 return get_string('date');
135 * Return criteria status text for display in reports
137 * @param completion_completion $completion The user's completion record
138 * @return string
140 public function get_status($completion) {
141 return $completion->is_complete() ? get_string('yes') : userdate($this->timeend, '%d-%h-%y');
145 * Find user's who have completed this criteria
147 public function cron() {
148 global $DB;
150 // Get all users who match meet this criteria
151 $sql = '
152 SELECT DISTINCT
153 c.id AS course,
154 cr.timeend AS timeend,
155 cr.id AS criteriaid,
156 ra.userid AS userid
157 FROM
158 {course_completion_criteria} cr
159 INNER JOIN
160 {course} c
161 ON cr.course = c.id
162 INNER JOIN
163 {context} con
164 ON con.instanceid = c.id
165 INNER JOIN
166 {role_assignments} ra
167 ON ra.contextid = con.id
168 LEFT JOIN
169 {course_completion_crit_compl} cc
170 ON cc.criteriaid = cr.id
171 AND cc.userid = ra.userid
172 WHERE
173 cr.criteriatype = '.COMPLETION_CRITERIA_TYPE_DATE.'
174 AND con.contextlevel = '.CONTEXT_COURSE.'
175 AND c.enablecompletion = 1
176 AND cc.id IS NULL
177 AND cr.timeend < ?
180 // Loop through completions, and mark as complete
181 $rs = $DB->get_recordset_sql($sql, array(time()));
182 foreach ($rs as $record) {
183 $completion = new completion_criteria_completion((array) $record, DATA_OBJECT_FETCH_BY_KEY);
184 $completion->mark_complete($record->timeend);
186 $rs->close();
190 * Return criteria progress details for display in reports
192 * @param completion_completion $completion The user's completion record
193 * @return array An array with the following keys:
194 * type, criteria, requirement, status
196 public function get_details($completion) {
197 $details = array();
198 $details['type'] = get_string('datepassed', 'completion');
199 $details['criteria'] = get_string('remainingenroleduntildate', 'completion');
200 $details['requirement'] = userdate($this->timeend, '%d %B %Y');
201 $details['status'] = '';
203 return $details;
207 * Return pix_icon for display in reports.
209 * @param string $alt The alt text to use for the icon
210 * @param array $attributes html attributes
211 * @return pix_icon
213 public function get_icon($alt, array $attributes = null) {
214 return new pix_icon('i/calendar', $alt, 'moodle', $attributes);
218 * Shift the date when resetting course.
220 * @param int $courseid the course id
221 * @param int $timeshift number of seconds to shift date
222 * @return boolean was the operation successful?
224 public static function update_date($courseid, $timeshift) {
225 if ($criteria = self::fetch(array('course' => $courseid))) {
226 $criteria->timeend = $criteria->timeend + $timeshift;
227 $criteria->update();