47 string $requested_back_page,
52 $this->requested_obj_id = $request_obj_id;
56 $this->requested_back_page = (
int) $requested_back_page;
85 $this->chapter_has_no_active_page =
false;
86 $this->deactivated_page =
false;
90 $requested_obj_id = 0;
94 if ($requested_obj_id == 0) {
95 $obj_id = $this->lm_tree->getRootId();
96 if ($this->cmd ==
"resume") {
100 if ($last_accessed_page &&
101 $last_accessed_page != $this->lm_tree->getLastActivePage()) {
102 $obj_id = $last_accessed_page;
110 $this->lm->getType(),
111 $this->lm_set->get(
"time_scheduled_page_activation")
116 $this->deactivated_page =
true;
120 if (!$this->lm_tree->isInTree($obj_id)) {
121 $this->current_page_id = $obj_id;
124 $curr_node = $this->lm_tree->getNodeData($obj_id);
127 $this->lm->getType(),
128 (bool) $this->lm_set->get(
"time_scheduled_page_activation")
134 if ($act_data[
"show_activation_info"] ??
false) {
138 if ($curr_node[
"type"] ==
"pg" &&
140 $page_id = $curr_node[
"obj_id"];
145 while ($succ_node && !$active) {
146 $succ_node = $this->lm_tree->fetchSuccessorNode($page_id,
"pg");
147 if (!is_null($succ_node)) {
148 $page_id = $succ_node[
"obj_id"];
151 $this->lm->getType(),
152 $this->lm_set->get(
"time_scheduled_page_activation")
157 if ($act_data[
"show_activation_info"] ??
false) {
160 $this->deactivated_page =
true;
167 if (is_null($succ_node) || $succ_node[
"type"] !=
"pg") {
168 $this->chapter_has_no_active_page =
true;
169 $this->current_page_id = 0;
174 if ($this->lm_tree->isInTree($page_id)) {
175 $path = $this->lm_tree->getPathId($page_id);
176 if (!in_array($requested_obj_id,
$path)) {
177 $this->chapter_has_no_active_page =
true;
182 $this->current_page_id = $page_id;
189 if (empty($page_id)) {
209 if ($this->chapter_has_no_active_page &&
213 if ($this->deactivated_page) {
221 if ($this->lm_tree->isInTree($c_id)) {
222 $succ_node = $this->lm_tree->fetchSuccessorNode($c_id,
"pg");
224 if (is_array($succ_node)) {
225 $c_id = $succ_node[
"obj_id"];
229 $this->lm->getType(),
230 $this->lm_set->get(
"time_scheduled_page_activation")
233 if (is_array($succ_node) && $succ_node[
"obj_id"] > 0 && !$active) {
236 if ($act_data[
"show_activation_info"] &&
246 if (is_array($succ_node)) {
247 return (
int) $succ_node[
"obj_id"];
261 if ($this->deactivated_page) {
268 if ($this->lm_tree->isInTree($c_id)) {
269 $pre_node = $this->lm_tree->fetchPredecessorNode($c_id,
"pg");
271 if (is_array($pre_node)) {
272 $c_id = $pre_node[
"obj_id"];
275 $this->lm->getType(),
276 (bool) $this->lm_set->get(
"time_scheduled_page_activation")
279 if (is_array($pre_node) && $pre_node[
"obj_id"] > 0 && !$active) {
282 if ($act_data[
"show_activation_info"] &&
292 if (is_array($pre_node)) {
293 return (
int) $pre_node[
"obj_id"];
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupActivationData(int $a_id, string $a_parent_type, string $a_lang="-")
Lookup activation data.
static now()
Return current timestamp in Y-m-d H:i:s format.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(ilObjUser $user, int $request_obj_id, ilLMTree $lm_tree, ilObjLearningModule $lm, ilSetting $lm_set, string $requested_back_page, string $cmd, int $focus_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bool $chapter_has_no_active_page
static _getLastAccessedPage(int $a_ref_id, int $a_user_id=0)
static _lookupType(int $a_obj_id, int $a_lm_id=0)
static _lookupContObjID(int $a_id)
get learning module id for lm object
isChapterWithoutActivePage()
Has current chapter no active page?