3 declare(strict_types=1);
36 $this->profile_request = new \ILIAS\User\ProfileGUIRequest(
49 $baseClass = $this->profile_request->getBaseClass();
50 if ($baseClass ==
"" || strtolower($baseClass) !=
'ildashboardgui') {
55 strtolower($this->
ctrl->getCmdClass()) ==
'ilpersonalprofilegui' &&
56 in_array(strtolower($this->
ctrl->getCmd()), array(
70 $prompt_settings = $user_prompt_service->data()->getSettings();
71 $user_prompt = $user_prompt_service->data()->getUserPrompt($this->
user->getId());
73 $user_log->debug(
"Check Profile");
77 if ($this->
user->getProfileIncomplete()) {
78 $user_log->debug(
"Is Incomplete");
82 if (!in_array($this->
user->getPref(
"public_profile"), array(
"y",
"g"))) {
83 $user_log->debug(
"Is not public");
86 $user_log->debug(
"Mode: X days after login");
88 if ($user_prompt->getFirstLogin() !=
"" && $user_prompt->getLastPrompt() ==
"") {
89 $user_log->debug(
"User has logged in and not prompted yet");
92 $deadline->increment(
IL_CAL_DAY, $prompt_settings->getDays());
96 $user_log->debug(
"Deadline is due");
97 $this->update_prompt =
true;
105 $user_log->debug(
"Mode: Repeat all x days");
107 $deadline = max($user_prompt->getFirstLogin(), $user_prompt->getLastPrompt());
108 if ($deadline !=
"") {
109 $user_log->debug(
"User logged in already.");
111 $deadline->increment(
IL_CAL_DAY, $prompt_settings->getDays());
112 $user_log->debug(
"Check Deadline: " . $deadline->get(
IL_CAL_DATETIME) .
115 $user_log->debug(
"Deadline is due");
116 $this->update_prompt =
true;
131 if ($this->update_prompt) {
132 $user_log->debug(
"Update last prompt date for user :" . $this->
user->getId());
134 $user_prompt_service->data()->saveLastUserPrompt($this->
user->getId());
137 $this->
ctrl->setParameterByClass(
"ilpersonalprofilegui",
"prompted",
"1");
138 $this->
ctrl->redirectByClass(array(
'ildashboardgui',
'ilpersonalprofilegui'),
'showPersonalData');
__construct(ilObjUser $user, ilCtrl $ctrl)
static getLogger(string $a_component_id)
Get component logger.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static now()
Return current timestamp in Y-m-d H:i:s format.
ILIAS User ProfileGUIRequest $profile_request
shouldStoreRequestTarget()
const MODE_ONCE_AFTER_LOGIN