19 declare(strict_types=0);
32 if (isset($status_info[
'completed'])) {
33 foreach ($status_info[
'completed'] as $in_progress) {
34 $users = array_merge($users, $in_progress);
36 $users = array_unique($users);
48 foreach ($status_info[
'items'] as $item_id) {
49 $tmp_users = $status_info[
'completed'][$item_id];
54 $users = array_intersect($users, $tmp_users);
57 return array_unique($users);
62 $status_info = array();
65 $collection = $olp->getCollectionInstance();
68 $status_info[
"items"] = $collection->getItems($a_obj_id);
70 foreach ($status_info[
"items"] as $item_id) {
71 $status_info[
"completed"][$item_id] = array();
76 $possible_items = $collection->getPossibleItems(
$ref_id);
77 $chapter_ids = array_intersect(
78 array_keys($possible_items),
83 $status_info[
"items"] = $chapter_ids;
86 $status = self::_getObjectStatus($a_obj_id);
88 foreach ($chapter_ids as $item_id) {
89 $status_info[
"item_titles"][$item_id] = $possible_items[$item_id][
"title"];
91 if (isset($status[$item_id])) {
92 foreach ($status[$item_id] as
$user_id => $user_status) {
94 $status_info[
"completed"][$item_id][] =
$user_id;
107 ?
object $a_obj =
null 109 $info = self::_getStatusInfo($a_obj_id);
111 if (isset($info[
"completed"])) {
113 $in_progress =
false;
114 foreach ($info[
"completed"] as $user_ids) {
116 if (in_array($a_usr_id, $user_ids)) {
124 return self::LP_STATUS_COMPLETED_NUM;
127 return self::LP_STATUS_IN_PROGRESS_NUM;
131 return self::LP_STATUS_NOT_ATTEMPTED_NUM;
140 $ilDB = $DIC[
'ilDB'];
144 $sql =
"SELECT subitem_id, completed, usr_id, last_change" .
145 " FROM ut_lp_coll_manual" .
146 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
148 $sql .=
" AND usr_id = " .
$ilDB->quote($a_user_id,
"integer");
150 $set =
$ilDB->query($sql);
151 while ($row =
$ilDB->fetchAssoc($set)) {
153 $res[(
int) $row[
"subitem_id"]][(
int) $row[
"usr_id"]] = (
int) $row[
"completed"];
155 $res[(
int) $row[
"subitem_id"]] = array((
int) $row[
"completed"],
166 ?array $a_completed =
null 170 $ilDB = $DIC[
'ilDB'];
175 $a_completed = array();
179 $collection = $olp->getCollectionInstance();
181 $existing = self::_getObjectStatus($a_obj_id, $a_user_id);
183 foreach ($collection->getItems() as $item_id) {
184 if (isset($existing[$item_id])) {
186 if ((!$existing[$item_id][0] && in_array(
190 ($existing[$item_id][0] && !in_array(
195 "UPDATE ut_lp_coll_manual SET " .
196 " completed = " .
$ilDB->quote(
197 in_array($item_id, $a_completed),
200 " , last_change = " .
$ilDB->quote(
204 " WHERE obj_id = " .
$ilDB->quote(
208 " AND usr_id = " .
$ilDB->quote(
212 " AND subitem_id = " .
$ilDB->quote(
218 } elseif (in_array($item_id, $a_completed)) {
220 "INSERT INTO ut_lp_coll_manual" .
221 "(obj_id,usr_id,subitem_id,completed,last_change)" .
222 " VALUES (" .
$ilDB->quote($a_obj_id,
"integer") .
223 " , " .
$ilDB->quote($a_user_id,
"integer") .
224 " , " .
$ilDB->quote($item_id,
"integer") .
225 " , " .
$ilDB->quote(1,
"integer") .
226 " , " .
$ilDB->quote($now,
"integer") .
")"
static _getObjectStatus( $a_obj_id, $a_user_id=null)
static _getCompleted(int $a_obj_id)
Static function to read the users who have the status 'completed'.
static _setObjectStatus(int $a_obj_id, int $a_user_id, ?array $a_completed=null)
static _getStatusInfo(int $a_obj_id)
Reads informations about the object e.g test results, tlt, number of visits.
static _getAllReferences(int $id)
get all reference ids for object ID
static _getInProgress(int $a_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
determineStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
static _getCompleted(int $a_obj_id)
static _getStatusInfo(int $a_obj_id)
static getInstance(int $obj_id)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)