1 <?php declare(strict_types=1);
45 if (!isset(
$_GET[
'baseClass']) || strtolower(
$_GET[
'baseClass']) !=
'ildashboardgui') {
50 strtolower($this->ctrl->getCmdClass()) ==
'ilpersonalprofilegui' &&
51 in_array(strtolower($this->ctrl->getCmd()), array(
68 $prompt_settings = $user_prompt_service->data()->getSettings();
69 $user_prompt = $user_prompt_service->data()->getUserPrompt($this->
user->getId());
71 $user_log->debug(
"Check Profile");
75 if ($this->
user->getProfileIncomplete()) {
76 $user_log->debug(
"Is Incomplete");
80 if (!in_array($this->
user->getPref(
"public_profile"), array(
"y",
"g"))) {
81 $user_log->debug(
"Is not public");
84 $user_log->debug(
"Mode: X days after login");
86 if ($user_prompt->getFirstLogin() !=
"" && $user_prompt->getLastPrompt() ==
"") {
87 $user_log->debug(
"User has logged in and not prompted yet");
90 $deadline->increment(
IL_CAL_DAY, (
int) $prompt_settings->getDays());
94 $user_log->debug(
"Deadline is due");
95 $this->update_prompt =
true;
103 $user_log->debug(
"Mode: Repeat all x days");
105 $deadline = max($user_prompt->getFirstLogin(), $user_prompt->getLastPrompt());
106 if ($deadline !=
"") {
107 $user_log->debug(
"User logged in already.");
109 $deadline->increment(
IL_CAL_DAY, (
int) $prompt_settings->getDays());
110 $user_log->debug(
"Check Deadline: " . $deadline->get(
IL_CAL_DATETIME) .
113 $user_log->debug(
"Deadline is due");
114 $this->update_prompt =
true;
132 if ($this->update_prompt) {
133 $user_log->debug(
"Update last prompt date for user :" . $this->
user->getId());
135 $user_prompt_service->data()->saveLastUserPrompt((
int) $this->
user->getId());
138 $_GET[
'baseClass'] =
'ildashboardgui';
140 $this->ctrl->setTargetScript(
'ilias.php');
141 $this->ctrl->setParameterByClass(
"ilpersonalprofilegui",
"prompted",
"1");
142 ilUtil::redirect($this->ctrl->getLinkTargetByClass(array(
'ildashboardgui',
'ilpersonalprofilegui'),
'showPersonalData',
'',
false,
false));
This class provides processing control methods.
__construct(ilObjUser $user, ilCtrl $ctrl)
ilUserProfileStartUpStep constructor.
User profile prompt subservice.
static now()
Return current timestamp in Y-m-d H:i:s format.
shouldStoreRequestTarget()
const MODE_ONCE_AFTER_LOGIN
static getLogger($a_component_id)
Get component logger.
static redirect($a_script)