19 declare(strict_types=0);
31 if (isset($status_info[
"user_status"][
"in_progress"])) {
32 $users = $status_info[
"user_status"][
"in_progress"];
42 if (isset($status_info[
"user_status"][
"completed"])) {
43 $users = $status_info[
"user_status"][
"completed"];
57 $coll_items = self::getCollectionItems($a_obj_id,
true);
59 $res[
"items"] = array_keys($coll_items);
60 if (
sizeof(
$res[
"items"])) {
62 foreach ($coll_items as $mob_id => $item) {
63 $res[
"item_titles"][$mob_id] = $item[
"title"];
67 foreach (
$res[
"items"] as $mob_id) {
68 $res[
"completed"][$mob_id] = array();
69 $res[
"in_progress"][$mob_id] = array();
73 "SELECT obj_id, usr_id FROM read_event" .
74 " WHERE " .
$ilDB->in(
"obj_id",
$res[
"items"],
"",
"integer")
76 while ($row =
$ilDB->fetchAssoc($set)) {
77 $res[
"completed"][(
int) $row[
"obj_id"]][] = (
int) $row[
"usr_id"];
82 foreach (
$res[
"items"] as $mob_id) {
87 foreach ($tmp as
$user_id => $completed_items) {
88 if (
sizeof($completed_items) ==
sizeof(
$res[
"items"])) {
98 if ((!isset(
$res[
"user_status"][
"in_progress"]) || !in_array(
100 $res[
"user_status"][
"in_progress"]
102 (!isset(
$res[
"user_status"][
"completed"]) || !in_array(
104 $res[
"user_status"][
"completed"]
106 $res[
"user_status"][
"in_progress"][] = (
int) $user_id;
115 $a_include_titles =
false 120 $collection = $olp->getCollectionInstance();
122 $possible = $collection->getPossibleItems();
126 $collection->getItems(),
127 array_keys($possible)
130 if ($a_include_titles) {
131 foreach (
$valid as $item_id) {
132 $res[$item_id] = $possible[$item_id];
144 ?
object $a_obj =
null 146 $status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
148 $status = self::LP_STATUS_IN_PROGRESS_NUM;
152 $items = self::getCollectionItems($a_obj_id);
153 if (count($items) > 0) {
158 $set = $this->db->query(
159 "SELECT obj_id FROM read_event" .
160 " WHERE usr_id = " . $this->db->quote($a_usr_id,
"integer") .
161 " AND " . $this->db->in(
"obj_id", $items,
false,
"integer")
163 while ($row = $this->db->fetchAssoc($set)) {
164 $found[] = (
int) $row[
"obj_id"];
167 if (count($found) > 0) {
168 $status = self::LP_STATUS_IN_PROGRESS_NUM;
170 if (count($found) == count($items)) {
171 $status = self::LP_STATUS_COMPLETED_NUM;
181 ?
object $a_obj =
null 186 $items = self::getCollectionItems($a_obj_id);
187 if (count($items) > 0) {
191 $set = $this->db->query(
192 "SELECT obj_id FROM read_event" .
193 " WHERE usr_id = " . $this->db->quote($a_usr_id,
"integer") .
194 " AND " . $this->db->in(
"obj_id", $items,
false,
"integer")
196 while ($row = $this->db->fetchAssoc($set)) {
197 $found[] = (
int) $row[
"obj_id"];
200 if (count($found) > 0 && count($items) > 0) {
201 $per = (
int) round(100 / count($items) * count($found));
static _getStatusInfo(int $a_obj_id)
static _getInProgress(int $a_obj_id)
static _getStatusInfo(int $a_obj_id)
Reads informations about the object e.g test results, tlt, number of visits.
determineStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
static hasAccessed(int $a_obj_id, int $a_usr_id)
Has accessed.
static getCollectionItems( $a_obj_id, $a_include_titles=false)
static _getCompleted(int $a_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static lookupUsersInProgress(int $a_obj_id)
determinePercentage(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
static getInstance(int $obj_id)