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 status for a particular user/course
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
.'/completion/data_object.php');
31 * Course completion status for a particular user/course
33 * @package core_completion
34 * @category completion
35 * @copyright 2009 Catalyst IT Ltd
36 * @author Aaron Barnes <aaronb@catalyst.net.nz>
37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
39 class completion_completion
extends data_object
{
41 /* @var string $table Database table name that stores completion information */
42 public $table = 'course_completions';
44 /* @var array $required_fields Array of required table fields, must start with 'id'. */
45 public $required_fields = array('id', 'userid', 'course',
46 'timeenrolled', 'timestarted', 'timecompleted', 'reaggregate');
48 /* @var int $userid User ID */
51 /* @var int $course Course ID */
54 /* @var int Time of course enrolment {@link completion_completion::mark_enrolled()} */
58 * Time the user started their course completion {@link completion_completion::mark_inprogress()}
63 /* @var int Timestamp of course completion {@link completion_completion::mark_complete()} */
64 public $timecompleted;
66 /* @var int Flag to trigger cron aggregation (timestamp) */
71 * Finds and returns a data_object instance based on params.
73 * @param array $params associative arrays varname = >value
74 * @return data_object instance of data_object or false if none found.
76 public static function fetch($params) {
77 return self
::fetch_helper('course_completions', __CLASS__
, $params);
81 * Return status of this completion
85 public function is_complete() {
86 return (bool) $this->timecompleted
;
90 * Mark this user as started (or enrolled) in this course
92 * If the user is already marked as started, no change will occur
94 * @param integer $timeenrolled Time enrolled (optional)
96 public function mark_enrolled($timeenrolled = null) {
98 if ($this->timeenrolled
=== null) {
100 if ($timeenrolled === null) {
101 $timeenrolled = time();
104 $this->timeenrolled
= $timeenrolled;
107 return $this->_save();
111 * Mark this user as inprogress in this course
113 * If the user is already marked as inprogress, the time will not be changed
115 * @param integer $timestarted Time started (optional)
117 public function mark_inprogress($timestarted = null) {
121 // Set reaggregate flag
122 $this->reaggregate
= $timenow;
124 if (!$this->timestarted
) {
127 $timestarted = $timenow;
130 $this->timestarted
= $timestarted;
133 return $this->_save();
137 * Mark this user complete in this course
139 * This generally happens when the required completion criteria
140 * in the course are complete.
142 * @param integer $timecomplete Time completed (optional)
145 public function mark_complete($timecomplete = null) {
147 // Never change a completion time
148 if ($this->timecompleted
) {
152 // Use current time if nothing supplied
153 if (!$timecomplete) {
154 $timecomplete = time();
158 $this->timecompleted
= $timecomplete;
161 if ($result = $this->_save()) {
162 events_trigger('course_completed', $this->get_record_data());
169 * Save course completion status
171 * This method creates a course_completions record if none exists
175 private function _save() {
176 if ($this->timeenrolled
=== null) {
177 $this->timeenrolled
= 0;
182 return $this->update();
184 // Make sure reaggregate field is not null
185 if (!$this->reaggregate
) {
186 $this->reaggregate
= 0;
189 // Make sure timestarted is not null
190 if (!$this->timestarted
) {
191 $this->timestarted
= 0;
194 return $this->insert();