59 bool $a_by_obj_id =
false,
64 $this->db = $DIC->database();
65 $this->
lng = $DIC->language();
66 $this->
user = $DIC->user();
67 $this->user_id = $a_user_id;
69 $this->component_repository = $DIC[
'component.repository'];
73 $this->lm_obj_id = $a_id;
75 $this->lm_ref_id = $a_id;
88 $ilUser = $DIC->user();
90 if ($a_user_id == 0) {
91 $a_user_id = $ilUser->getId();
94 if (!isset(self::$instances[$a_ref_id][$a_user_id])) {
95 self::$instances[$a_ref_id][$a_user_id] =
new ilLMTracker($a_ref_id,
false, $a_user_id);
97 return self::$instances[$a_ref_id][$a_user_id];
106 $ilUser = $DIC->user();
108 if ($a_user_id == 0) {
109 $a_user_id = $ilUser->getId();
112 if (!isset(self::$instancesbyobj[$a_obj_id][$a_user_id])) {
113 self::$instancesbyobj[$a_obj_id][$a_user_id] =
new ilLMTracker($a_obj_id,
true, $a_user_id);
115 return self::$instancesbyobj[$a_obj_id][$a_user_id];
134 if ($this->lm_ref_id == 0) {
176 "usr_id" => [
"integer", $usr_id],
177 "lm_id" => [
"integer", $lm_id]
181 "obj_id" => [
"integer", $obj_id],
182 "lm_title" => [
"text", $title]
197 $set =
$ilDB->query(
"SELECT obj_id FROM lm_read_event" .
198 " WHERE obj_id = " .
$ilDB->quote($a_page_id,
"integer") .
199 " AND usr_id = " .
$ilDB->quote($this->user_id,
"integer"));
200 if (!
$ilDB->fetchAssoc($set)) {
202 "obj_id" => array(
"integer", $a_page_id),
203 "usr_id" => array(
"integer", $this->user_id)
206 $ilDB->replace(
"lm_read_event", $fields, array());
210 $ilDB->manipulate(
"UPDATE lm_read_event SET" .
211 " read_count = read_count + 1 " .
212 " , last_access = " .
$ilDB->quote($now,
"integer") .
213 " WHERE obj_id = " .
$ilDB->quote($a_page_id,
"integer") .
214 " AND usr_id = " .
$ilDB->quote($this->user_id,
"integer"));
222 $set =
$ilDB->query(
"SELECT * FROM lo_access WHERE " .
223 "usr_id = " .
$ilDB->quote($this->user_id,
"integer") .
" AND " .
224 "lm_id = " .
$ilDB->quote($this->lm_ref_id,
"integer"));
226 if (isset(
$res[
"obj_id"])) {
231 $pg_id =
$res[
"obj_id"];
232 if (!$this->lm_tree->isInTree($pg_id)) {
236 $time_diff = $read_diff = 0;
239 if (($now - $pg_ts) <= $valid_timespan) {
240 $time_diff = $now - $pg_ts;
246 $parent_st_ids = array();
247 foreach ($this->lm_tree->getPathFull($pg_id) as $item) {
248 if ($item[
"type"] ==
"st") {
249 $parent_st_ids[] = $item[
"obj_id"];
253 if ($parent_st_ids && ($time_diff || $read_diff)) {
256 $set =
$ilDB->query(
"SELECT obj_id FROM lm_read_event" .
257 " WHERE " .
$ilDB->in(
"obj_id", $parent_st_ids,
"",
"integer") .
258 " AND usr_id = " .
$ilDB->quote($this->user_id,
"integer"));
259 while ($row =
$ilDB->fetchAssoc($set)) {
260 $ex_st[] = $row[
"obj_id"];
264 $missing_st = array_diff($parent_st_ids, $ex_st);
265 if (
sizeof($missing_st)) {
266 foreach ($missing_st as $st_id) {
268 "obj_id" => array(
"integer", $st_id),
269 "usr_id" => array(
"integer", $this->user_id)
272 $ilDB->replace(
"lm_read_event", $fields, array());
277 $ilDB->manipulate(
"UPDATE lm_read_event SET" .
278 " read_count = read_count + " .
$ilDB->quote($read_diff,
"integer") .
279 " , spent_seconds = spent_seconds + " .
$ilDB->quote($time_diff,
"integer") .
280 " , last_access = " .
$ilDB->quote($now,
"integer") .
281 " WHERE " .
$ilDB->in(
"obj_id", $parent_st_ids,
"",
"integer") .
282 " AND usr_id = " .
$ilDB->quote($this->user_id,
"integer"));
295 $this->current_page_id = $a_val;
319 $this->dirty =
false;
322 $this->tree_arr = array();
323 $nodes = $this->lm_tree->getCompleteTree();
324 foreach ($nodes as $node) {
325 $this->tree_arr[
"childs"][$node[
"parent"]][] = $node;
326 $this->tree_arr[
"parent"][$node[
"child"]] = $node[
"parent"];
327 $this->tree_arr[
"nodes"][$node[
"child"]] = $node;
334 $this->re_arr = array();
335 $set =
$ilDB->query(
"SELECT * FROM lm_read_event " .
336 " WHERE " .
$ilDB->in(
"obj_id", $this->lm_obj_ids,
false,
"integer") .
337 " AND usr_id = " .
$ilDB->quote($this->user_id,
"integer"));
338 while ($rec =
$ilDB->fetchAssoc($set)) {
339 $this->re_arr[$rec[
"obj_id"]] = $rec;
343 $this->page_questions = array();
344 $this->all_questions = array();
346 foreach (
$q[
"set"] as $quest) {
347 $this->page_questions[$quest[
"page_id"]][] = $quest[
"question_id"];
348 $this->all_questions[] = $quest[
"question_id"];
354 $this->has_incorrect_answers =
false;
356 $has_pred_incorrect_answers =
false;
357 $has_pred_incorrect_not_unlocked_answers =
false;
358 $this->
determineProgressStatus($this->lm_tree->readRootId(), $has_pred_incorrect_answers, $has_pred_incorrect_not_unlocked_answers);
360 $this->has_incorrect_answers = $has_pred_incorrect_answers;
370 if (count($this->all_questions) > 0 && !$this->has_incorrect_answers) {
383 bool &$a_has_pred_incorrect_answers,
384 bool &$a_has_pred_incorrect_not_unlocked_answers
388 if (isset($this->tree_arr[
"nodes"][$a_obj_id])) {
389 $this->tree_arr[
"nodes"][$a_obj_id][
"has_pred_incorrect_answers"] = $a_has_pred_incorrect_answers;
390 $this->tree_arr[
"nodes"][$a_obj_id][
"has_pred_incorrect_not_unlocked_answers"] = $a_has_pred_incorrect_not_unlocked_answers;
392 if (isset($this->tree_arr[
"childs"][$a_obj_id])) {
395 $this->tree_arr[
"childs"][$a_obj_id],
402 foreach ($this->tree_arr[
"childs"][$a_obj_id] as
$c) {
406 if (!self::_isNodeVisible($c)) {
412 $a_has_pred_incorrect_answers,
413 $a_has_pred_incorrect_not_unlocked_answers
427 if ($this->tree_arr[
"nodes"][$c[
"child"]][
"type"] ==
"pg") {
429 ($c_stat ==
ilLMTracker::NOT_ATTEMPTED && isset($this->page_questions[$c[
"child"]]) && count($this->page_questions[$c[
"child"]]) > 0)) {
430 $a_has_pred_incorrect_answers =
true;
431 if (!$this->tree_arr[
"nodes"][$c[
"child"]][
"unlocked"]) {
432 $a_has_pred_incorrect_not_unlocked_answers =
true;
437 if ($cnt_completed == count($this->tree_arr[
"childs"][$a_obj_id])) {
440 } elseif ($this->tree_arr[
"nodes"][$a_obj_id][
"type"] ==
"pg") {
442 if (isset($this->re_arr[$a_obj_id]) && $this->re_arr[$a_obj_id][
"read_count"] > 0) {
449 if (isset($this->page_questions[$a_obj_id])) {
452 foreach ($this->page_questions[$a_obj_id] as $q_id) {
453 if (isset($this->answer_status[$q_id])
454 && $this->answer_status[$q_id][
"try"] > 0
455 && !$this->answer_status[$q_id][
"passed"]) {
457 if (!$this->answer_status[$q_id][
"unlocked"]) {
465 foreach ($this->page_questions[$a_obj_id] as $q_id) {
466 if (!isset($this->answer_status[$q_id])
467 || $this->answer_status[$q_id][
"try"] == 0) {
476 $this->tree_arr[
"nodes"][$a_obj_id][
"unlocked"] = $unlocked;
477 $this->tree_arr[
"nodes"][$a_obj_id][
"has_pred_incorrect_answers"] = $a_has_pred_incorrect_answers;
478 $this->tree_arr[
"nodes"][$a_obj_id][
"has_pred_incorrect_not_unlocked_answers"] = $a_has_pred_incorrect_not_unlocked_answers;
482 $this->tree_arr[
"nodes"][$a_obj_id][
"status"] = $status;
489 int $a_highlighted_node = 0
494 if ($a_node[
"child"] == $a_highlighted_node) {
495 return $icons->getImagePathRunning();
497 if (isset($this->tree_arr[
"nodes"][$a_node[
"child"]])) {
498 switch ($this->tree_arr[
"nodes"][$a_node[
"child"]][
"status"] ??
null) {
500 return $icons->getImagePathInProgress();
503 return $icons->getImagePathFailed();
506 return $icons->getImagePathCompleted();
509 return $icons->getImagePathNotAttempted();
518 bool $a_ignore_unlock =
false 522 if (isset($this->tree_arr[
"nodes"][$a_obj_id])) {
523 if ($a_ignore_unlock) {
524 $ret = $this->tree_arr[
"nodes"][$a_obj_id][
"has_pred_incorrect_answers"] ??
false;
526 $ret = $this->tree_arr[
"nodes"][$a_obj_id][
"has_pred_incorrect_not_unlocked_answers"] ??
false;
543 $blocked_users = array();
546 $this->page_questions = array();
547 $this->all_questions = array();
548 $page_for_question = array();
550 foreach (
$q[
"set"] as $quest) {
551 $this->page_questions[$quest[
"page_id"]][] = $quest[
"question_id"];
552 $this->all_questions[] = $quest[
"question_id"];
553 $page_for_question[$quest[
"question_id"]] = $quest[
"page_id"];
557 $qlist->setParentObjId(0);
558 $qlist->setJoinObjectData(
false);
559 $qlist->addFieldFilter(
"question_id", $this->all_questions);
561 $qdata = $qlist->getQuestionDataArray();
565 foreach ($this->answer_status as $as) {
566 if ($as[
"try"] >= $qdata[$as[
"qst_id"]][
"nr_of_tries"] && $qdata[$as[
"qst_id"]][
"nr_of_tries"] > 0 && !$as[
"passed"]) {
569 $as[
"user_name"] = $name[
"lastname"] .
", " . $name[
"firstname"] .
" [" . $name[
"login"] .
"]";
570 $as[
"question_text"] = $qdata[$as[
"qst_id"]][
"question_text"];
571 $as[
"page_id"] = $page_for_question[$as[
"qst_id"]];
573 $blocked_users[] = $as;
577 return $blocked_users;
586 if ($a_node[
"type"] !=
"pg") {
594 (
bool)
$lm_set->get(
"time_scheduled_page_activation")
599 if ($act_data[
"show_activation_info"] &&
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
static queryQuestionsOfLearningModule(int $a_lm_id, string $a_order_field, string $a_order_dir, int $a_offset, int $a_limit)
Get questions of learning module.
Readable part of repository interface to ilComponentDataDB.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasPredIncorrectAnswers(int $a_obj_id, bool $a_ignore_unlock=false)
Has predecessing incorrect answers.
bool $has_incorrect_answers
setCurrentPage(int $a_val)
static array $instancesbyobj
getBlockedUsersInformation()
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
static _lookupName(int $a_user_id)
lookup user name
static _lookupActivationData(int $a_id, string $a_parent_type, string $a_lang="-")
Lookup activation data.
static getAnswerStatus( $a_q_id, int $a_user_id=0)
static now()
Return current timestamp in Y-m-d H:i:s format.
static getInstance(int $a_tree_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
static _lookupTitle(int $a_obj_id)
static _tracProgress(int $a_user_id, int $a_obj_id, int $a_ref_id, string $a_obj_type='')
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getAllQuestionsCorrect()
Have all questions been answered correctly (and questions exist)?
trackLastPageAccess(int $usr_id, int $lm_id, int $obj_id)
Track last accessed page for a learning module.
trackPageAndChapterAccess(int $a_page_id)
static _isNodeVisible(array $a_node)
Is node visible for the learner.
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
determineProgressStatus(int $a_obj_id, bool &$a_has_pred_incorrect_answers, bool &$a_has_pred_incorrect_not_unlocked_answers)
Determine progress status of nodes.
static getInstance(int $a_ref_id, int $a_user_id=0)
static _getAllLMObjectsOfLM(int $a_lm_id, string $a_type="")
Get all objects of learning module.
static getInstanceByObjId(int $a_obj_id, int $a_user_id=0)
replace(string $table, array $primary_keys, array $other_columns)
Replace into method.
trackAccess(int $a_page_id, int $user_id)
Track access to lm page.
__construct(int $a_id, bool $a_by_obj_id=false, int $a_user_id=0)
loadLMTrackingData()
Load LM tracking data.
static _getValidTimeSpan()
getIconForLMObject(array $a_node, int $a_highlighted_node=0)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
ilComponentRepository $component_repository
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)