19 declare(strict_types=0);
51 if (isset(self::$not_attempted_cache[$a_obj_id])) {
52 return self::$not_attempted_cache[$a_obj_id];
56 self::$not_attempted_cache[$a_obj_id] = $class::_getNotAttempted(
60 return self::$not_attempted_cache[$a_obj_id];
76 if (isset(self::$in_progress_cache[$a_obj_id])) {
77 return self::$in_progress_cache[$a_obj_id];
83 self::$in_progress_cache[$a_obj_id] = $class::_getInProgress($a_obj_id);
85 return self::$in_progress_cache[$a_obj_id];
101 if (isset(self::$completed_cache[$a_obj_id])) {
102 return self::$completed_cache[$a_obj_id];
105 self::$completed_cache[$a_obj_id] = $class::_getCompleted($a_obj_id);
107 return self::$completed_cache[$a_obj_id];
123 if (isset(self::$failed_cache[$a_obj_id])) {
124 return self::$failed_cache[$a_obj_id];
129 self::$failed_cache[$a_obj_id] = $class::_getFailed($a_obj_id);
131 return self::$failed_cache[$a_obj_id];
139 if (isset(self::$info_cache[$a_obj_id])) {
140 return self::$info_cache[$a_obj_id];
144 self::$info_cache[$a_obj_id] = $class::_getStatusInfo($a_obj_id);
145 return self::$info_cache[$a_obj_id];
150 unset(self::$info_cache[$a_obj_id]);
151 unset(self::$failed_cache[$a_obj_id]);
152 unset(self::$completed_cache[$a_obj_id]);
153 unset(self::$in_progress_cache[$a_obj_id]);
154 unset(self::$not_attempted_cache[$a_obj_id]);
162 static $cache = array();
164 if (isset($cache[$a_obj_id])) {
165 return $cache[$a_obj_id];
169 $cache[$a_obj_id] = $class::_getTypicalLearningTime($type, $a_obj_id);
171 return $cache[$a_obj_id];
195 static $cache = array();
197 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
198 return $cache[$a_obj_id .
'_' . $a_type];
202 $cache[$a_obj_id .
'_' . $a_type] = $class::_getNotAttempted($a_obj_id);
204 return $cache[$a_obj_id .
'_' . $a_type];
220 static $cache = array();
222 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
223 return $cache[$a_obj_id .
'_' . $a_type];
227 $cache[$a_obj_id .
'_' . $a_type] = $class::_getInProgress($a_obj_id);
229 return $cache[$a_obj_id .
'_' . $a_type];
245 static $cache = array();
247 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
248 return $cache[$a_obj_id .
'_' . $a_type];
252 $cache[$a_obj_id .
'_' . $a_type] = $class::_getCompleted($a_obj_id);
254 return $cache[$a_obj_id .
'_' . $a_type];
268 static $cache = array();
270 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
271 return $cache[$a_obj_id .
'_' . $a_type];
275 $cache[$a_obj_id .
'_' . $a_type] = $class::_getFailed($a_obj_id);
277 return $cache[$a_obj_id .
'_' . $a_type];
284 static $cache = array();
286 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
287 return $cache[$a_obj_id .
'_' . $a_type];
291 $cache[$a_obj_id .
'_' . $a_type] = $class::_getStatusInfo($a_obj_id);
293 return $cache[$a_obj_id .
'_' . $a_type];
299 ?
object $a_obj =
null,
300 bool $a_percentage =
false,
301 bool $a_force_raise =
false 304 if (strtolower(get_class($trac_obj)) !=
"illpstatus") {
305 $trac_obj->_updateStatus(
318 $trac_obj->_setDirty($a_obj_id);
323 ?array $a_users =
null 326 $trac_obj->refreshStatus($a_obj_id, $a_users);
331 if (isset(self::$status_cache[$a_obj_id][$a_usr_id])) {
332 return self::$status_cache[$a_obj_id][$a_usr_id];
336 $st = $trac_obj->determineStatus($a_obj_id, $a_usr_id);
338 self::$status_cache[$a_obj_id][$a_usr_id] = $st;
346 unset(self::$status_cache[$a_obj_id][$a_usr_id]);
351 ?array $a_user_ids =
null 354 return $class::_lookupCompletedForObject($a_obj_id, $a_user_ids);
359 ?array $a_user_ids =
null 362 return $class::_lookupFailedForObject($a_obj_id, $a_user_ids);
367 ?array $a_user_ids =
null 370 return $class::_lookupInProgressForObject($a_obj_id, $a_user_ids);
static _setDirty(int $a_obj_id)
static _getCountNotAttempted(int $a_obj_id)
Static function to read the number of user who have the status 'not_attempted'.
static _getCompletedByType(int $a_obj_id, string $a_type)
static _getInProgressByType(int $a_obj_id, string $a_type)
static _getCompleted(int $a_obj_id)
Static function to read the users who have the status 'completed'.
static _getCountCompleted(int $a_obj_id)
Static function to read the number of user who have the status 'completed'.
static _getStatusInfo(int $a_obj_id)
Reads informations about the object e.g test results, tlt, number of visits.
static _lookupInProgressForObject(int $a_obj_id, ?array $a_user_ids=null)
static _getStatusInfoByType(int $a_obj_id, string $a_type)
static array $completed_cache
static _getFailedByType(int $a_obj_id, string $a_type)
static _resetInfoCaches($a_obj_id)
static _getInProgress(int $a_obj_id)
Static function to read users who have the status 'in_progress'.
static _getNotAttempted(int $a_obj_id)
Static function to read the number of user who have the status 'not_attempted'.
static _lookupCompletedForObject(int $a_obj_id, ?array $a_user_ids=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _getCountNotAttemptedByType(int $a_obj_id, string $a_type)
Static function to read the number of user who have the status 'not_attempted'.
static array $in_progress_cache
static _getClassByIdAndType(int $a_obj_id, string $a_type)
static _getFailed(int $a_obj_id)
Static function to read the users who have the status 'completed'.
static _getCountInProgressByType(int $a_obj_id, string $a_type)
static _getNotAttemptedByType(int $a_obj_id, string $a_type)
static _getClassById(int $a_obj_id, ?int $a_mode=null)
static _refreshStatus(int $a_obj_id, ?array $a_users=null)
static _getCountCompletedByType(int $a_obj_id, string $a_type)
static _removeStatusCache(int $a_obj_id, int $a_usr_id)
static _getInstance(int $a_obj_id, ?int $a_mode=null)
static _getCountFailed(int $a_obj_id)
Static function to read the number of user who have the status 'failed'.
static array $failed_cache
static _determineStatus(int $a_obj_id, int $a_usr_id)
static _lookupFailedForObject(int $a_obj_id, ?array $a_user_ids=null)
static _getTypicalLearningTime(string $type, int $a_obj_id)
Reads Typical learning time.
static array $status_cache
static array $not_attempted_cache
static _getCountInProgress(int $a_obj_id)
Static function to read the number of user who have the status 'in_progress'.
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
static _getCountFailedByType(int $a_obj_id, string $a_type)