1 |
efrain |
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.
|
|
|
13 |
//
|
|
|
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/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* This file contains the date criteria type
|
|
|
19 |
*
|
|
|
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
|
|
|
25 |
*/
|
|
|
26 |
|
|
|
27 |
defined('MOODLE_INTERNAL') || die();
|
|
|
28 |
|
|
|
29 |
/**
|
|
|
30 |
* Course completion critieria - completion on specified date
|
|
|
31 |
*
|
|
|
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
|
|
|
37 |
*/
|
|
|
38 |
class completion_criteria_date extends completion_criteria {
|
|
|
39 |
|
|
|
40 |
/* @var int Criteria type constant [COMPLETION_CRITERIA_TYPE_DATE] */
|
|
|
41 |
public $criteriatype = COMPLETION_CRITERIA_TYPE_DATE;
|
|
|
42 |
|
|
|
43 |
/**
|
|
|
44 |
* Finds and returns a data_object instance based on params.
|
|
|
45 |
*
|
|
|
46 |
* @param array $params associative arrays varname=>value
|
|
|
47 |
* @return data_object data_object instance or false if none found.
|
|
|
48 |
*/
|
|
|
49 |
public static function fetch($params) {
|
|
|
50 |
$params['criteriatype'] = COMPLETION_CRITERIA_TYPE_DATE;
|
|
|
51 |
return self::fetch_helper('course_completion_criteria', __CLASS__, $params);
|
|
|
52 |
}
|
|
|
53 |
|
|
|
54 |
/**
|
|
|
55 |
* Add appropriate form elements to the critieria form
|
|
|
56 |
*
|
|
|
57 |
* @param MoodleQuickForm $mform Moodle forms object
|
|
|
58 |
* @param stdClass $data not used
|
|
|
59 |
*/
|
|
|
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');
|
|
|
64 |
|
|
|
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);
|
|
|
71 |
}
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
/**
|
|
|
75 |
* Update the criteria information stored in the database
|
|
|
76 |
*
|
|
|
77 |
* @param stdClass $data Form data
|
|
|
78 |
*/
|
|
|
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();
|
|
|
84 |
}
|
|
|
85 |
}
|
|
|
86 |
|
|
|
87 |
/**
|
|
|
88 |
* Review this criteria and decide if the user has completed
|
|
|
89 |
*
|
|
|
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
|
|
|
93 |
*/
|
|
|
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();
|
|
|
99 |
}
|
|
|
100 |
|
|
|
101 |
return true;
|
|
|
102 |
}
|
|
|
103 |
return false;
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
/**
|
|
|
107 |
* Return criteria title for display in reports
|
|
|
108 |
*
|
|
|
109 |
* @return string
|
|
|
110 |
*/
|
|
|
111 |
public function get_title() {
|
|
|
112 |
return get_string('date');
|
|
|
113 |
}
|
|
|
114 |
|
|
|
115 |
/**
|
|
|
116 |
* Return a more detailed criteria title for display in reports
|
|
|
117 |
*
|
|
|
118 |
* @return string
|
|
|
119 |
*/
|
|
|
120 |
public function get_title_detailed() {
|
|
|
121 |
return userdate($this->timeend, get_string('strftimedatemonthabbr', 'core_langconfig'));
|
|
|
122 |
}
|
|
|
123 |
|
|
|
124 |
/**
|
|
|
125 |
* Return criteria type title for display in reports
|
|
|
126 |
*
|
|
|
127 |
* @return string
|
|
|
128 |
*/
|
|
|
129 |
public function get_type_title() {
|
|
|
130 |
return get_string('date');
|
|
|
131 |
}
|
|
|
132 |
|
|
|
133 |
|
|
|
134 |
/**
|
|
|
135 |
* Return criteria status text for display in reports
|
|
|
136 |
*
|
|
|
137 |
* @param completion_completion $completion The user's completion record
|
|
|
138 |
* @return string
|
|
|
139 |
*/
|
|
|
140 |
public function get_status($completion) {
|
|
|
141 |
return $completion->is_complete() ? get_string('yes') : userdate(
|
|
|
142 |
$this->timeend,
|
|
|
143 |
get_string('strftimedatemonthabbr', 'core_langconfig')
|
|
|
144 |
);
|
|
|
145 |
}
|
|
|
146 |
|
|
|
147 |
/**
|
|
|
148 |
* Find user's who have completed this criteria
|
|
|
149 |
*/
|
|
|
150 |
public function cron() {
|
|
|
151 |
global $DB;
|
|
|
152 |
|
|
|
153 |
// Get all users who match meet this criteria
|
|
|
154 |
$sql = '
|
|
|
155 |
SELECT DISTINCT
|
|
|
156 |
c.id AS course,
|
|
|
157 |
cr.timeend AS timeend,
|
|
|
158 |
cr.id AS criteriaid,
|
|
|
159 |
ra.userid AS userid
|
|
|
160 |
FROM
|
|
|
161 |
{course_completion_criteria} cr
|
|
|
162 |
INNER JOIN
|
|
|
163 |
{course} c
|
|
|
164 |
ON cr.course = c.id
|
|
|
165 |
INNER JOIN
|
|
|
166 |
{context} con
|
|
|
167 |
ON con.instanceid = c.id
|
|
|
168 |
INNER JOIN
|
|
|
169 |
{role_assignments} ra
|
|
|
170 |
ON ra.contextid = con.id
|
|
|
171 |
LEFT JOIN
|
|
|
172 |
{course_completion_crit_compl} cc
|
|
|
173 |
ON cc.criteriaid = cr.id
|
|
|
174 |
AND cc.userid = ra.userid
|
|
|
175 |
WHERE
|
|
|
176 |
cr.criteriatype = '.COMPLETION_CRITERIA_TYPE_DATE.'
|
|
|
177 |
AND con.contextlevel = '.CONTEXT_COURSE.'
|
|
|
178 |
AND c.enablecompletion = 1
|
|
|
179 |
AND cc.id IS NULL
|
|
|
180 |
AND cr.timeend < ?
|
|
|
181 |
';
|
|
|
182 |
|
|
|
183 |
// Loop through completions, and mark as complete
|
|
|
184 |
$rs = $DB->get_recordset_sql($sql, array(time()));
|
|
|
185 |
foreach ($rs as $record) {
|
|
|
186 |
$completion = new completion_criteria_completion((array) $record, DATA_OBJECT_FETCH_BY_KEY);
|
|
|
187 |
$completion->mark_complete($record->timeend);
|
|
|
188 |
}
|
|
|
189 |
$rs->close();
|
|
|
190 |
}
|
|
|
191 |
|
|
|
192 |
/**
|
|
|
193 |
* Return criteria progress details for display in reports
|
|
|
194 |
*
|
|
|
195 |
* @param completion_completion $completion The user's completion record
|
|
|
196 |
* @return array An array with the following keys:
|
|
|
197 |
* type, criteria, requirement, status
|
|
|
198 |
*/
|
|
|
199 |
public function get_details($completion) {
|
|
|
200 |
$details = array();
|
|
|
201 |
$details['type'] = get_string('datepassed', 'completion');
|
|
|
202 |
$details['criteria'] = get_string('remainingenroleduntildate', 'completion');
|
|
|
203 |
$details['requirement'] = userdate($this->timeend, get_string('strftimedatemonthabbr', 'core_langconfig'));
|
|
|
204 |
$details['status'] = '';
|
|
|
205 |
|
|
|
206 |
return $details;
|
|
|
207 |
}
|
|
|
208 |
|
|
|
209 |
/**
|
|
|
210 |
* Return pix_icon for display in reports.
|
|
|
211 |
*
|
|
|
212 |
* @param string $alt The alt text to use for the icon
|
|
|
213 |
* @param array $attributes html attributes
|
|
|
214 |
* @return pix_icon
|
|
|
215 |
*/
|
|
|
216 |
public function get_icon($alt, array $attributes = null) {
|
|
|
217 |
return new pix_icon('i/calendar', $alt, 'moodle', $attributes);
|
|
|
218 |
}
|
|
|
219 |
|
|
|
220 |
/**
|
|
|
221 |
* Shift the date when resetting course.
|
|
|
222 |
*
|
|
|
223 |
* @param int $courseid the course id
|
|
|
224 |
* @param int $timeshift number of seconds to shift date
|
|
|
225 |
* @return boolean was the operation successful?
|
|
|
226 |
*/
|
|
|
227 |
public static function update_date($courseid, $timeshift) {
|
|
|
228 |
if ($criteria = self::fetch(array('course' => $courseid))) {
|
|
|
229 |
$criteria->timeend = $criteria->timeend + $timeshift;
|
|
|
230 |
$criteria->update();
|
|
|
231 |
}
|
|
|
232 |
}
|
|
|
233 |
}
|