3 declare(strict_types=0);
37 if (isset(self::$not_attempted_cache[$a_obj_id])) {
38 return self::$not_attempted_cache[$a_obj_id];
42 self::$not_attempted_cache[$a_obj_id] = $class::_getNotAttempted(
46 return self::$not_attempted_cache[$a_obj_id];
62 if (isset(self::$in_progress_cache[$a_obj_id])) {
63 return self::$in_progress_cache[$a_obj_id];
69 self::$in_progress_cache[$a_obj_id] = $class::_getInProgress($a_obj_id);
71 return self::$in_progress_cache[$a_obj_id];
87 if (isset(self::$completed_cache[$a_obj_id])) {
88 return self::$completed_cache[$a_obj_id];
91 self::$completed_cache[$a_obj_id] = $class::_getCompleted($a_obj_id);
93 return self::$completed_cache[$a_obj_id];
109 if (isset(self::$failed_cache[$a_obj_id])) {
110 return self::$failed_cache[$a_obj_id];
115 self::$failed_cache[$a_obj_id] = $class::_getFailed($a_obj_id);
117 return self::$failed_cache[$a_obj_id];
125 if (isset(self::$info_cache[$a_obj_id])) {
126 return self::$info_cache[$a_obj_id];
130 self::$info_cache[$a_obj_id] = $class::_getStatusInfo($a_obj_id);
131 return self::$info_cache[$a_obj_id];
136 unset(self::$info_cache[$a_obj_id]);
137 unset(self::$failed_cache[$a_obj_id]);
138 unset(self::$completed_cache[$a_obj_id]);
139 unset(self::$in_progress_cache[$a_obj_id]);
140 unset(self::$not_attempted_cache[$a_obj_id]);
148 static $cache = array();
150 if (isset($cache[$a_obj_id])) {
151 return $cache[$a_obj_id];
155 $cache[$a_obj_id] = $class::_getTypicalLearningTime($a_obj_id);
157 return $cache[$a_obj_id];
181 static $cache = array();
183 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
184 return $cache[$a_obj_id .
'_' . $a_type];
188 $cache[$a_obj_id .
'_' . $a_type] = $class::_getNotAttempted($a_obj_id);
190 return $cache[$a_obj_id .
'_' . $a_type];
206 static $cache = array();
208 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
209 return $cache[$a_obj_id .
'_' . $a_type];
213 $cache[$a_obj_id .
'_' . $a_type] = $class::_getInProgress($a_obj_id);
215 return $cache[$a_obj_id .
'_' . $a_type];
231 static $cache = array();
233 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
234 return $cache[$a_obj_id .
'_' . $a_type];
238 $cache[$a_obj_id .
'_' . $a_type] = $class::_getCompleted($a_obj_id);
240 return $cache[$a_obj_id .
'_' . $a_type];
254 static $cache = array();
256 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
257 return $cache[$a_obj_id .
'_' . $a_type];
261 $cache[$a_obj_id .
'_' . $a_type] = $class::_getFailed($a_obj_id);
263 return $cache[$a_obj_id .
'_' . $a_type];
270 static $cache = array();
272 if (isset($cache[$a_obj_id .
'_' . $a_type])) {
273 return $cache[$a_obj_id .
'_' . $a_type];
277 $cache[$a_obj_id .
'_' . $a_type] = $class::_getStatusInfo($a_obj_id);
279 return $cache[$a_obj_id .
'_' . $a_type];
285 ?
object $a_obj = null,
286 bool $a_percentage =
false,
287 bool $a_force_raise =
false 290 if (strtolower(get_class($trac_obj)) !=
"illpstatus") {
291 $trac_obj->_updateStatus(
304 $trac_obj->_setDirty($a_obj_id);
309 ?array $a_users = null
312 $trac_obj->refreshStatus($a_obj_id, $a_users);
317 if (isset(self::$status_cache[$a_obj_id][$a_usr_id])) {
318 return self::$status_cache[$a_obj_id][$a_usr_id];
322 $st = $trac_obj->determineStatus($a_obj_id, $a_usr_id);
324 self::$status_cache[$a_obj_id][$a_usr_id] = $st;
332 unset(self::$status_cache[$a_obj_id][$a_usr_id]);
337 ?array $a_user_ids = null
340 return $class::_lookupCompletedForObject($a_obj_id, $a_user_ids);
345 ?array $a_user_ids = null
348 return $class::_lookupFailedForObject($a_obj_id, $a_user_ids);
353 ?array $a_user_ids = null
356 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)
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 _getTypicalLearningTime(int $a_obj_id)
Reads Typical learning time.
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)
Class ilLPStatusWrapper This class is wrapper for all ilLPStatus classes.
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)