19 declare(strict_types=0);
32 $members = self::getMembers($a_obj_id);
54 $usr_ids = (array) ($objective_results[
'user_status'][self::LP_STATUS_IN_PROGRESS_NUM] ?? []);
58 $usr_ids = array_intersect(self::getMembers($a_obj_id), $usr_ids);
71 $usr_ids = (array) ($objective_results[
'user_status'][self::LP_STATUS_COMPLETED_NUM] ?? []);
75 $usr_ids = array_intersect(self::getMembers($a_obj_id), $usr_ids);
78 return $usr_ids ?: array();
84 $usr_ids = (array) ($objective_results[
'user_status'][self::LP_STATUS_FAILED_NUM] ?? []);
88 $usr_ids = array_intersect(self::getMembers($a_obj_id), $usr_ids);
100 $status_info = array();
101 $status_info[
'user_status'] = array();
106 $status_info[
'num_objectives'] = count($status_info[
'objectives']);
108 if ($status_info[
'num_objectives']) {
111 $status_info[
'objectives'],
118 $status_info[
'objectives']
120 $status_info[
'user_status'][$user_status][] =
$user_id;
132 $status_info[
'user_status'][ilLPStatus::LP_STATUS_IN_PROGRESS_NUM]
139 $query =
"SELECT * FROM crs_objectives WHERE " . $in;
142 $status_info[
'objective_title'][$row->objective_id] = $row->title;
143 $status_info[
'objective_description'][$row->objective_id] = $row->description;
152 ?
object $a_obj =
null 164 $status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
165 switch ($this->ilObjDataCache->lookupType($a_obj_id)) {
169 $status = self::LP_STATUS_IN_PROGRESS_NUM;
182 if ($objtv_status !==
null) {
183 $status = $objtv_status;
199 return $member_obj->getMembers();
207 ?array $a_user_ids =
null 210 $a_user_ids = self::getMembers($a_obj_id);
215 return self::_lookupStatusForObject(
217 self::LP_STATUS_COMPLETED_NUM,
227 ?array $a_user_ids =
null 237 ?array $a_user_ids =
null 240 $a_user_ids = self::getMembers($a_obj_id);
245 return self::_lookupStatusForObject(
247 self::LP_STATUS_IN_PROGRESS_NUM,
static _getFailed(int $a_obj_id)
static _getCompleted(int $a_obj_id)
static getSummarizedObjectiveStatusForLP(int $a_obj_id, array $a_objective_ids, int $a_user_id=0)
static _getCompleted(int $a_obj_id)
Static function to read the users who have the status 'completed'.
static _getStatusInfo(int $a_obj_id)
Reads informations about the object e.g test results, tlt, number of visits.
const LP_STATUS_IN_PROGRESS_NUM
static hasAccessed(int $a_obj_id, int $a_usr_id)
Has accessed.
static _getObjectiveIds(int $course_id, bool $a_activated_only=false)
static _getStatusInfo(int $a_obj_id)
static _getInProgress(int $a_obj_id)
Static function to read users who have the status 'in_progress'.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static lookupUsersInProgress(int $a_obj_id)
static _getInProgress(int $a_obj_id)
static _getInstanceByObjId(int $a_obj_id)
static _getFailed(int $a_obj_id)
Static function to read the users who have the status 'completed'.
static getMembers(int $a_obj_id)
static _lookupCompletedForObject(int $a_obj_id, ?array $a_user_ids=null)
Get completed users for object.
determineStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
static _getNotAttempted(int $a_obj_id)
static _lookupInProgressForObject(int $a_obj_id, ?array $a_user_ids=null)
Get in progress users for object.
static _lookupFailedForObject(int $a_obj_id, ?array $a_user_ids=null)
Get failed users for object.