19 declare(strict_types=1);
30 private readonly \
ilSetting $user_settings
36 $info_texts = $prompt_texts = [];
37 foreach ($this->
lng->getInstalledLanguages() as
$lang) {
38 $info_texts[
$lang] = $this->user_settings->get(
'user_profile_info_' .
$lang);
39 $prompt_texts[
$lang] = $this->user_settings->get(
'user_profile_prompt_' .
$lang);
42 $prompt_days = $this->user_settings->get(
'user_profile_prompt_days');
43 if ($prompt_days !==
null) {
44 $prompt_days = (
int) $prompt_days;
48 (
int) $this->user_settings->get(
'user_profile_prompt_mode'),
57 foreach ($this->
lng->getInstalledLanguages() as
$lang) {
62 $this->user_settings->set(
'user_profile_prompt_mode', (
string) $settings->
getMode());
68 $set = $this->db->queryF(
69 'SELECT first_login, last_profile_prompt FROM usr_data ' .
70 ' WHERE usr_id = %s ',
74 $rec = $this->db->fetchAssoc($set);
77 $rec[
'last_profile_prompt'] ===
null 80 $rec[
'first_login'] ===
null 91 'last_profile_prompt' => [
'timestamp', date(self::DATE_FORMAT)]
94 'usr_id' => [
'integer', $user_id]
102 string $variable_prefix
104 if (!array_key_exists($lang, $texts_array)) {
105 $this->user_settings->delete(
"{$variable_prefix}_{$lang}");
108 $this->user_settings->set(
"{$variable_prefix}_{$lang}", $texts_array[$lang]);
114 if ($days ===
null) {
115 $this->user_settings->delete(
'user_profile_prompt_days');
119 $this->user_settings->set(
120 'user_profile_prompt_days',
updateText(string $lang, array $texts_array, string $variable_prefix)
saveSettings(Settings $settings)
getUserPrompt(int $user_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
updateLastUserPrompt(int $user_id)
__construct(private \ilDBInterface $db, private readonly \ilLanguage $lng, private readonly \ilSetting $user_settings)
updateDaysSetting(?int $days)