126 bool $a_call_by_reference =
false 134 $this->irss = $DIC->resourceStorage();
135 $this->auth_mode =
'default';
136 $this->passwd_type = self::PASSWD_PLAIN;
137 if ($a_user_id > 0) {
138 $this->
setId($a_user_id);
142 $this->prefs[
'language'] = $this->
ilias->ini->readVariable(
'language',
'default');
143 $this->skin = $this->
ilias->ini->readVariable(
'layout',
'skin');
145 $this->prefs[
'style'] = $this->
ilias->ini->readVariable(
'layout',
'style');
148 $this->app_event_handler = $DIC[
'ilAppEventHandler'];
149 $this->date_format_factory = (
new DataFactory())->dateFormat();
164 $r =
$ilDB->queryF(
'SELECT * FROM usr_data ' .
165 'WHERE usr_id= %s', [
'integer'], [$this->
id]);
170 $data[
'passwd_type'] = self::PASSWD_CRYPTED;
185 if (!isset($this->prefs[
'language']) || $this->prefs[
'language'] ===
'') {
186 $this->prefs[
'language'] = $this->oldPrefs[
'language'] ??
'';
190 !isset($this->prefs[
'skin']) || $this->prefs[
'skin'] ===
'' ||
193 $this->prefs[
'skin'] = $this->oldPrefs[
'skin'] ??
'';
196 $this->skin = $this->prefs[
'skin'];
199 !isset($this->prefs[
'style']) ||
200 $this->prefs[
'style'] ===
'' ||
208 $this->prefs[
'skin'] = $this->
ilias->ini->readVariable(
'layout',
'skin');
209 $this->prefs[
'style'] = $this->
ilias->ini->readVariable(
'layout',
'style');
212 $ilErr->raiseError(
'<b>Error: There is no dataset with id ' .
213 $this->
id .
'!</b><br />class: ' . get_class($this) .
'<br />Script: ' . __FILE__ .
214 '<br />Line: ' . __LINE__,
$ilErr->FATAL);
230 $this->password_encoding_type = $password_encryption_type;
254 $this->
setLogin($a_data[
'login'] ??
'');
255 if (!($a_data[
'passwd_type'] ??
false)) {
256 $ilErr->raiseError(
'<b>Error: passwd_type missing in function assignData(). ' .
257 $this->
id .
'!</b><br />class: ' . get_class($this) .
'<br />Script: ' 258 . __FILE__ .
'<br />Line: ' . __LINE__,
$ilErr->FATAL);
260 if (($a_data[
'passwd'] ??
'') !=
'********' && strlen($a_data[
'passwd'] ??
'')) {
261 $this->
setPasswd($a_data[
'passwd'] ??
'', $a_data[
'passwd_type'] ??
'');
264 $this->
setGender((
string) ($a_data[
'gender'] ??
''));
265 $this->
setUTitle((
string) ($a_data[
'title'] ??
''));
266 $this->
setFirstname((
string) ($a_data[
'firstname'] ??
''));
267 $this->
setLastname((
string) ($a_data[
'lastname'] ??
''));
269 if (isset($a_data[
'birthday']) && is_string($a_data[
'birthday'])) {
277 $this->
setDepartment((
string) ($a_data[
'department'] ??
''));
278 $this->
setStreet((
string) ($a_data[
'street'] ??
''));
279 $this->
setCity((
string) ($a_data[
'city'] ??
''));
280 $this->
setZipcode((
string) ($a_data[
'zipcode'] ??
''));
281 $this->
setCountry((
string) ($a_data[
'country'] ??
''));
284 $this->
setPhoneHome((
string) ($a_data[
'phone_home'] ??
''));
286 $this->
setFax((
string) ($a_data[
'fax'] ??
''));
288 $this->
setEmail((
string) ($a_data[
'email'] ??
''));
290 $this->
setHobby((
string) ($a_data[
'hobby'] ??
''));
291 $this->
setClientIP((
string) ($a_data[
'client_ip'] ??
''));
301 $this->
setLastLogin((
string) ($a_data[
'last_login'] ??
''));
302 $this->
setFirstLogin((
string) ($a_data[
'first_login'] ??
''));
304 $this->
setLastUpdate((
string) ($a_data[
'last_update'] ??
''));
305 $this->create_date = $a_data[
'create_date'] ??
'';
306 $this->
setComment((
string) ($a_data[
'referral_comment'] ??
''));
307 $this->approve_date = ($a_data[
'approve_date'] ??
null);
308 $this->active = ($a_data[
'active'] ?? 0);
309 $this->agree_date = ($a_data[
'agree_date'] ??
null);
324 $this->
setAuthMode((
string) ($a_data[
'auth_mode'] ?? null));
330 $this->avatar_rid = (string) ($a_data[
'rid'] ?? self::NO_AVATAR_RID);
342 $ilAppEventHandler = $DIC[
'ilAppEventHandler'];
348 switch ($this->passwd_type) {
349 case self::PASSWD_PLAIN:
350 if (strlen($this->passwd)) {
351 LocalUserPasswordManager::getInstance()->encodePassword($this, $this->passwd);
358 case self::PASSWD_CRYPTED:
363 $ilErr->raiseError(
'<b>Error: passwd_type missing in function saveAsNew. ' .
364 $this->
id .
'!</b><br />class: ' . get_class($this) .
'<br />Script: ' . __FILE__ .
365 '<br />Line: ' . __LINE__,
$ilErr->FATAL);
368 if (!$this->active) {
377 'passwd' => [
'text', $pw_value],
384 'email' => [
'text', trim($this->email ??
'')],
385 'second_email' => [
'text', trim($this->second_email ??
'')],
399 'last_login' => [
'timestamp',
null],
400 'first_login' => [
'timestamp',
null],
401 'last_profile_prompt' => [
'timestamp',
null],
419 'loc_zoom' => [
'integer', (
int) $this->loc_zoom],
420 'last_password_change' => [
'integer', $this->last_password_change_ts],
423 'is_self_registered' => [
'integer', (
int) $this->is_self_registered],
425 $ilDB->insert(
'usr_data', $insert_array);
432 $mbox->createDefaultFolder();
435 $mail_options->createMailOptionsEntry();
437 $ilAppEventHandler->raise(
438 'components/ILIAS/User',
440 [
'user_obj' => $this]
456 } elseif ($this->active) {
463 'firstname' => [
'text', substr($this->firstname, 0, 128)],
464 'lastname' => [
'text', substr($this->lastname, 0, 128)],
465 'email' => [
'text', substr(trim($this->email), 0, 128)],
466 'second_email' => [
'text', trim($this->second_email ??
'')],
495 'loc_zoom' => [
'integer', (
int) $this->loc_zoom],
496 'login_attempts' => [
'integer', $this->login_attempts],
497 'last_password_change' => [
'integer', $this->last_password_change_ts],
498 'passwd_policy_reset' => [
'integer', $this->passwd_policy_reset],
501 'reg_hash' => [
'text',
null],
504 ($this->avatar_rid ?? self::NO_AVATAR_RID)
508 if ($this->agree_date ===
null || (is_string($this->agree_date) && strtotime($this->agree_date) !==
false)) {
511 switch ($this->passwd_type) {
512 case self::PASSWD_PLAIN:
513 if (strlen($this->passwd)) {
514 LocalUserPasswordManager::getInstance()->encodePassword($this, $this->passwd);
515 $update_array[
'passwd'] = [
'text', $this->
getPasswd()];
521 case self::PASSWD_CRYPTED:
526 $ilErr->raiseError(
'<b>Error: passwd_type missing in function update()' . $this->
id .
'!</b><br />class: ' .
527 get_class($this) .
'<br />Script: ' . __FILE__ .
'<br />Line: ' . __LINE__,
$ilErr->FATAL);
533 $ilDB->update(
'usr_data', $update_array, [
'usr_id' => [
'integer', $this->
id]]);
547 $ilAppEventHandler->raise(
548 'components/ILIAS/User',
550 [
'user_obj' => $this]
562 $ilDB->manipulateF(
'UPDATE usr_data SET agree_date = ' .
$ilDB->now() .
563 ' WHERE usr_id = %s', [
'integer'], [$this->
getId()]);
572 $ilDB = $DIC->database();
575 'SELECT ' . $a_field .
' FROM usr_data WHERE usr_id = %s',
581 return $set[$a_field];
591 $ilDB = $DIC[
'ilDB'];
593 $set =
$ilDB->queryF(
594 'SELECT title, firstname, lastname FROM usr_data WHERE usr_id = %s',
599 if ($rec =
$ilDB->fetchAssoc($set)) {
601 $fullname = $rec[
'title'] .
' ';
603 if ($rec[
'firstname']) {
604 $fullname .= $rec[
'firstname'] .
' ';
606 if ($rec[
'lastname']) {
607 $fullname .= $rec[
'lastname'];
615 return self::_lookup($a_user_id,
'email') ??
'';
620 return (
string) self::_lookup($a_user_id,
'gender') ??
'';
625 return self::_lookup($a_user_id,
'client_ip') ??
'';
636 $ilDB = $DIC[
'ilDB'];
639 'SELECT firstname, lastname, title, login FROM usr_data WHERE usr_id = %s',
643 if ($user_rec =
$ilDB->fetchAssoc(
$res)) {
644 return [
'user_id' => $a_user_id,
645 'firstname' => $user_rec[
'firstname'],
646 'lastname' => $user_rec[
'lastname'],
647 'title' => $user_rec[
'title'],
648 'login' => $user_rec[
'login']
651 return [
'user_id' => 0,
667 $ilDB = $DIC[
'ilDB'];
670 'SELECT * FROM usr_data WHERE usr_id = %s',
680 return (
string) self::_lookup($a_user_id,
'login') ??
'';
685 return (
string) self::_lookup($a_user_id,
'ext_account') ??
'';
696 $ilDB = $DIC[
'ilDB'];
698 if (!is_array($a_user_str)) {
700 'SELECT usr_id FROM usr_data WHERE login = %s',
706 if (is_array($user_rec)) {
707 return (
int) $user_rec[
'usr_id'];
714 'SELECT usr_id FROM usr_data ' .
715 ' WHERE ' .
$ilDB->in(
'login', $a_user_str,
false,
'text')
719 while ($rec =
$ilDB->fetchAssoc($set)) {
720 $ids[] = (
int) $rec[
'usr_id'];
728 return self::_lookup($a_user_id,
'last_login') ??
'';
733 return self::_lookup($a_user_id,
'first_login') ??
'';
746 'UPDATE usr_data SET ' .
747 'last_login = ' .
$ilDB->now() .
748 ' WHERE usr_id = %s',
755 'UPDATE usr_data SET ' .
756 'first_login = ' .
$ilDB->now() .
757 ' WHERE usr_id = %s',
761 $this->app_event_handler->raise(
762 'components/ILIAS/User',
764 [
'user_obj' => $this]
784 if (func_num_args() != 2) {
788 if (!isset($raw) || !isset($raw_retype)) {
792 if ($raw != $raw_retype) {
796 LocalUserPasswordManager::getInstance()->encodePassword($this, $raw);
800 SET passwd = %s, passwd_enc_type = %s, passwd_salt = %s 802 [
'text',
'text',
'text',
'integer'],
816 $ilDB = $DIC->database();
820 SELECT * FROM loginname_history 839 $ilDB = $DIC[
'ilDB'];
841 $ilDB->setLimit(1, 0);
844 SELECT login, history_date FROM loginname_history 845 WHERE usr_id = %s ORDER BY history_date DESC',
850 if (!is_array($row) || !count($row)) {
855 $row[
'login'], $row[
'history_date']
872 $lng = $DIC->language();
874 if (func_num_args() != 1) {
878 if (!isset($a_login)) {
882 $former_login = self::_lookupLogin($this->
getId());
885 if (0 == strcmp($a_login, $former_login)) {
890 $last_history_entry = self::_getLastHistoryDataByUserId($this->
getId());
892 $last_history_entry =
null;
896 if ((
int)
$ilSetting->get(
'allow_change_loginname') &&
898 self::_doesLoginnameExistInHistory($a_login)) {
900 } elseif ((
int)
$ilSetting->get(
'allow_change_loginname') &&
902 is_array($last_history_entry) &&
903 $last_history_entry[1] + (
int)
$ilSetting->get(
'loginname_change_blocking_time') > time()) {
906 $lng->
txt(
'changing_loginname_not_possible_info'),
917 if ((
int)
$ilSetting->get(
'allow_change_loginname') &&
919 self::_writeHistory($this->
getId(), $former_login);
923 $this->
login = $a_login;
942 self::_writePref($this->
id, $a_keyword, $a_value);
943 $this->
setPref($a_keyword, $a_value);
948 self::_deletePref($this->
getId(), $a_keyword);
951 public static function _deletePref(
int $a_user_id,
string $a_keyword): void
955 $ilDB = $DIC->database();
958 'DELETE FROM usr_pref WHERE usr_id = %s AND keyword = %s',
960 [$a_user_id, $a_keyword]
971 $ilDB = $DIC->database();
974 'DELETE FROM usr_pref WHERE usr_id = %s',
987 $ilDB = $DIC->database();
991 'usr_id' => [
'integer', $a_usr_id],
992 'keyword' => [
'text', $a_keyword],
995 'value' => [
'text',$a_value]
1002 self::_deleteAllPref($this->
id);
1003 foreach ($this->prefs as $keyword => $value) {
1004 self::_writePref($this->
id, $keyword, (
string) $value);
1010 if ($tz = $this->
getPref(
'user_tz')) {
1014 return $settings->getDefaultTimeZone();
1020 if ($format = $this->
getPref(
'time_format')) {
1024 return $settings->getDefaultTimeFormat();
1030 if (!($format = $this->
getPref(
'date_format'))) {
1032 $format = $settings->getDefaultDateFormat();
1037 return $this->date_format_factory->germanShort();
1040 return $this->date_format_factory->americanShort();
1044 return $this->date_format_factory->standard();
1051 return $this->date_format_factory->withTime24($this->
getDateFormat());
1053 return $this->date_format_factory->withTime12($this->
getDateFormat());
1056 public function setPref(
string $a_keyword, ?
string $a_value): void
1058 if ($a_keyword !=
'') {
1059 $this->prefs[$a_keyword] = $a_value;
1063 public function getPref(
string $a_keyword): ?string
1065 return $this->prefs[$a_keyword] ??
null;
1070 return (array_key_exists($a_keyword, $this->prefs));
1079 $ilDB = $DIC[
'ilDB'];
1081 $query =
'SELECT * FROM usr_pref WHERE usr_id = ' .
$ilDB->quote($a_usr_id,
'integer') .
' ' .
1082 'AND keyword = ' .
$ilDB->quote($a_keyword,
'text');
1093 if (is_array($this->prefs)) {
1096 $this->prefs = self::_getPreferences($this->
id);
1099 public function delete():
bool 1103 $rbacadmin = $DIC->rbac()->admin();
1108 $mapping->deleteUser($this->
getId());
1113 $mailbox->updateMailsOfDeletedUser($this->
getLogin());
1120 'DELETE FROM usr_data WHERE usr_id = %s',
1128 self::_deleteAllPref($this->
getId());
1136 $rbacadmin->removeUser($this->
getId());
1140 $q =
'DELETE FROM bookmark_tree WHERE tree = ' .
1144 $q =
'DELETE FROM bookmark_data WHERE user_id = ' .
1170 $tree->cascadingDelete();
1173 $this->cron_delete_user_reminder_mail->removeSingleUserFromTable($this->
getId());
1180 $ilOrgUnitUserAssignmentQueries->deleteAllAssignmentsOfUser($this->
getId());
1194 $ilAppEventHandler = $DIC[
'ilAppEventHandler'];
1195 $ilAppEventHandler->raise(
1196 'components/ILIAS/User',
1198 [
'usr_id' => $this->
getId()]
1213 $this->fullname = ($this->utitle !=
'')
1214 ? $this->utitle .
' ' 1216 $this->fullname .= $this->firstname .
' ';
1234 if (!$a_max_strlen) {
1238 if (strlen($this->fullname) <= $a_max_strlen) {
1242 if ((strlen($this->utitle) + strlen($this->lastname) + 4) <= $a_max_strlen) {
1243 return ilUtil::stripSlashes($this->utitle .
' ' . substr($this->firstname, 0, 1) .
'. ' . $this->lastname);
1246 if ((strlen($this->firstname) + strlen($this->lastname) + 1) <= $a_max_strlen) {
1250 if ((strlen($this->lastname) + 3) <= $a_max_strlen) {
1259 $this->
login = $a_str;
1271 $this->passwd = $a_str;
1272 $this->passwd_type = $a_type;
1293 $this->gender = substr($a_str, -1);
1308 $this->utitle = $a_str;
1318 $this->firstname = $a_str;
1328 $this->lastname = $a_str;
1338 $this->institution = $a_str;
1348 $this->department = $a_str;
1358 $this->street = $a_str;
1368 $this->city = $a_str;
1378 $this->zipcode = $a_str;
1388 $this->country = $a_str;
1401 $this->sel_country = $a_val;
1414 $this->phone_office = $a_str;
1424 $this->phone_home = $a_str;
1434 $this->phone_mobile = $a_str;
1444 $this->fax = $a_str;
1454 $this->client_ip = $a_str;
1464 $this->matriculation = $a_str;
1476 $ilDB = $DIC[
'ilDB'];
1478 $query =
'SELECT matriculation FROM usr_data ' .
1479 'WHERE usr_id = ' .
$ilDB->quote($a_usr_id);
1482 return $row->matriculation ?:
'';
1487 $this->email = $a_str;
1507 $this->hobby = $a_str;
1517 $this->
setPref(
'language', $a_str);
1523 return $this->prefs[
'language'];
1528 $this->last_password_change_ts = $a_last_password_change_ts;
1543 $this->passwd_policy_reset = $status;
1550 $ilDB = $DIC->database();
1551 $lng = $DIC->language();
1553 $q =
'SELECT value FROM usr_pref WHERE usr_id= ' .
1554 $ilDB->quote($a_usr_id,
'integer') .
' AND keyword = ' .
1555 $ilDB->quote(
'language',
'text');
1558 while ($row =
$ilDB->fetchAssoc(
$r)) {
1559 return (
string) $row[
'value'];
1561 if (is_object(
$lng)) {
1573 $ilDB = $DIC[
'ilDB'];
1576 'UPDATE usr_data ' .
1577 ' SET ext_account = %s WHERE usr_id = %s',
1578 [
'text',
'integer'],
1579 [$a_ext_id, $a_usr_id]
1587 $ilDB = $DIC[
'ilDB'];
1590 'UPDATE usr_data ' .
1591 ' SET auth_mode = %s WHERE usr_id = %s',
1592 [
'text',
'integer'],
1593 [$a_auth_mode, $a_usr_id]
1615 $this->last_login = $a_str;
1625 $this->first_login = $a_str;
1635 $this->last_profile_prompt = $a_str;
1645 $this->last_update = $a_str;
1655 $this->referral_comment = $a_str;
1669 $this->approve_date = $a_str;
1683 $this->agree_date = $a_str;
1715 $ilDB = $DIC[
'ilDB'];
1717 $query =
'SELECT usr_id FROM usr_data ' .
1718 'WHERE active = ' .
$ilDB->quote(1,
'integer') .
' ' .
1719 'AND usr_id = ' .
$ilDB->quote($a_usr_id,
'integer');
1740 if ($this->active) {
1744 if ((!empty($storedActive) && empty($currentActive)) ||
1745 (empty($storedActive) && !empty($currentActive))) {
1746 $this->
setActive($currentActive, self::getUserIdByLogin(self::getLoginFromAuth()));
1755 return (
bool) self::_lookup($a_id,
'active');
1760 $this->skin = $a_str;
1765 $this->time_limit_owner = $a_owner;
1770 return $this->time_limit_owner ?: 7;
1775 $this->time_limit_from = $a_from;
1785 $this->time_limit_until = $a_until;
1795 $this->time_limit_unlimited = $a_unlimited;
1805 $this->time_limit_message = $a_time_limit_message;
1815 $this->login_attempts = $a_login_attempts;
1836 $this->profile_incomplete = $a_prof_inc;
1855 LocalUserPasswordManager::getInstance()->verifyPassword($this, base64_decode(
'aG9tZXI=')) &&
1867 $passwordResetOnFirstLogin = (
1868 $security->isPasswordChangeOnFirstLoginEnabled() &&
1873 return ($authModeAllowsPasswordChange && ($passwordResetOnFirstLogin || $passwordResetOnChangedPolicy));
1884 $max_pass_age = $security->getPasswordMaxAge();
1885 if ($max_pass_age > 0) {
1886 $max_pass_age_ts = ($max_pass_age * 86400);
1888 $current_ts = time();
1890 if (($current_ts - $pass_change_ts) > $max_pass_age_ts) {
1903 $current_ts = time();
1905 $password_age = (
int) (($current_ts - $pass_change_ts) / 86400);
1906 return $password_age;
1913 $ilDB = $DIC[
'ilDB'];
1917 $query =
'UPDATE usr_data SET last_password_change = %s ' .
1918 'WHERE usr_id = %s';
1919 $affected =
$ilDB->manipulateF(
1921 [
'integer',
'integer'],
1935 $query =
'UPDATE usr_data SET last_password_change = 0 ' .
1936 'WHERE usr_id = %s';
1937 $affected =
$ilDB->manipulateF(
1951 $this->latitude = $a_latitude;
1961 $this->longitude = $a_longitude;
1971 $this->loc_zoom = $a_locationzoom;
1992 string $a_session_id
1996 $ilDB = $DIC[
'ilDB'];
1998 $set =
$ilDB->queryf(
2000 SELECT COUNT(*) session_count 2001 FROM usr_session WHERE user_id = %s AND expires > %s AND session_id != %s ',
2002 [
'integer',
'integer',
'text'],
2003 [$a_user_id, time(), $a_session_id]
2005 $row =
$ilDB->fetchAssoc($set);
2006 return (
bool) $row[
'session_count'];
2014 $login = self::getLoginFromAuth();
2015 $id = self::_lookupId($login);
2027 $uid =
$GLOBALS[
'DIC'][
'ilAuthSession']->getUserId();
2028 $login = self::_lookupLogin($uid);
2032 $login = self::toUsernameWithoutDomain($login);
2045 $pos = strrpos($a_login,
'/');
2046 $pos2 = strrpos($a_login,
'\\');
2047 if ($pos ===
false || $pos < $pos2) {
2051 $a_login = substr($a_login, $pos + 1);
2063 $login = self::getLoginFromAuth();
2064 $set =
$ilDB->queryF(
2065 'SELECT active FROM usr_data WHERE login= %s',
2070 if ($rec =
$ilDB->fetchAssoc($set)) {
2071 if ($rec[
'active']) {
2081 return (
int) self::_lookupId($a_login);
2091 $ilDB = $DIC->database();
2094 'SELECT usr_id FROM usr_data ' .
2095 'WHERE email = %s and active = 1',
2100 while ($row =
$ilDB->fetchObject(
$res)) {
2101 $ids[] = (
int) $row->usr_id;
2115 $ilDB = $DIC->database();
2118 'SELECT login FROM usr_data ' .
2119 'WHERE email = %s and active = 1',
2124 while ($row =
$ilDB->fetchObject(
$res)) {
2125 $ids[] = $row->login;
2133 $login = self::_lookupLogin($a_userid);
2134 return $login ?:
null;
2140 public static function getAllUserLogins(): array
2147 $ilDB = $DIC[
'ilDB'];
2154 while ($row =
$ilDB->fetchAssoc(
$res)) {
2155 $logins[] = $row[
'login'];
2169 $ilDB = $DIC[
'ilDB'];
2170 $res =
$ilDB->query(
'SELECT * FROM usr_data WHERE ' .
2171 $ilDB->in(
'usr_id', $a_user_ids,
false,
'integer'));
2173 while ($row =
$ilDB->fetchAssoc(
$res)) {
2174 $user_data[$row[
'usr_id']] = $row;
2185 ?array $a_fields =
null,
2190 $ilDB = $DIC[
'ilDB'];
2194 if ($a_fields !==
null and is_array($a_fields)) {
2195 if (count($a_fields) == 0) {
2198 if (($usr_id_field = array_search(
'usr_id', $a_fields)) !==
false) {
2199 unset($a_fields[$usr_id_field]);
2202 $select = implode(
',', $a_fields) .
',usr_data.usr_id';
2204 if (in_array(
'online_time', $a_fields)) {
2205 $select .=
',ut_online.online_time ';
2209 $q =
'SELECT ' . $select .
' FROM usr_data ';
2213 if (in_array(
'online_time', $a_fields)) {
2214 $q .=
'LEFT JOIN ut_online ON usr_data.usr_id = ut_online.usr_id ';
2220 $q .=
'WHERE active = ' .
$ilDB->quote($active,
'integer');
2223 $q .=
'WHERE time_limit_unlimited= ' .
$ilDB->quote(0,
'integer');
2226 $qtemp =
$q .
', rbac_ua, object_data WHERE rbac_ua.rol_id = object_data.obj_id AND ' .
2227 $ilDB->like(
'object_data.title',
'text',
'%crs%') .
' AND usr_data.usr_id = rbac_ua.usr_id';
2230 while ($row =
$ilDB->fetchAssoc(
$r)) {
2231 $course_users[] = $row[
'usr_id'];
2233 if (count($course_users)) {
2234 $q .=
' WHERE ' .
$ilDB->in(
'usr_data.usr_id', $course_users,
true,
'integer') .
' ';
2241 $date = date(
'Y-m-d H:i:s', mktime(0, 0, 0, $session_data[
'm'], $session_data[
'd'], $session_data[
'y']));
2242 $q .=
' AND last_login < ' .
$ilDB->quote($date,
'timestamp');
2247 $q .=
' LEFT JOIN obj_members ON usr_data.usr_id = obj_members.usr_id ' .
2248 'WHERE obj_members.obj_id = (SELECT obj_id FROM object_reference ' .
2249 'WHERE ref_id = ' .
$ilDB->quote(
$ref_id,
'integer') .
') ';
2255 $rbacreview = $DIC[
'rbacreview'];
2258 $local_roles = $rbacreview->getRolesOfRoleFolder(
$ref_id,
false);
2259 if (is_array($local_roles) && count($local_roles)) {
2260 $q .=
' LEFT JOIN rbac_ua ON usr_data.usr_id = rbac_ua.usr_id WHERE ' .
2261 $ilDB->in(
'rbac_ua.rol_id', $local_roles,
false,
'integer') .
' ';
2268 $q .=
' LEFT JOIN rbac_ua ON usr_data.usr_id = rbac_ua.usr_id WHERE rbac_ua.rol_id = ' .
2269 $ilDB->quote($rol_id,
'integer');
2275 while ($row =
$ilDB->fetchAssoc(
$r)) {
2276 $result_arr[] = $row;
2289 $ilDB = $DIC[
'ilDB'];
2291 $q =
'SELECT count(*) as cnt FROM usr_pref up1, usr_pref up2 ' .
2292 ' WHERE up1.keyword= ' .
$ilDB->quote(
'style',
'text') .
2293 ' AND up1.value= ' .
$ilDB->quote($a_style,
'text') .
2294 ' AND up2.keyword= ' .
$ilDB->quote(
'skin',
'text') .
2295 ' AND up2.value= ' .
$ilDB->quote($a_skin,
'text') .
2296 ' AND up1.usr_id = up2.usr_id ';
2300 $cnt_rec =
$ilDB->fetchAssoc($cnt_set);
2302 return (
int) $cnt_rec[
'cnt'];
2312 $ilDB = $DIC[
'ilDB'];
2314 $q =
'SELECT DISTINCT up1.value style, up2.value skin FROM usr_pref up1, usr_pref up2 ' .
2315 ' WHERE up1.keyword = ' .
$ilDB->quote(
'style',
'text') .
2316 ' AND up2.keyword = ' .
$ilDB->quote(
'skin',
'text') .
2317 ' AND up1.usr_id = up2.usr_id';
2322 while ($sty_rec =
$ilDB->fetchAssoc($sty_set)) {
2323 $styles[] = $sty_rec[
'skin'] .
':' . $sty_rec[
'style'];
2330 string $a_from_skin,
2331 string $a_from_style,
2337 $ilDB = $DIC[
'ilDB'];
2339 $q =
'SELECT up1.usr_id usr_id FROM usr_pref up1, usr_pref up2 ' .
2340 ' WHERE up1.keyword= ' .
$ilDB->quote(
'style',
'text') .
2341 ' AND up1.value= ' .
$ilDB->quote($a_from_style,
'text') .
2342 ' AND up2.keyword= ' .
$ilDB->quote(
'skin',
'text') .
2343 ' AND up2.value= ' .
$ilDB->quote($a_from_skin,
'text') .
2344 ' AND up1.usr_id = up2.usr_id ';
2348 while ($usr_rec =
$ilDB->fetchAssoc($usr_set)) {
2349 self::_writePref($usr_rec[
'usr_id'],
'skin', $a_to_skin);
2350 self::_writePref($usr_rec[
'usr_id'],
'style', $a_to_style);
2372 string $a_time =
'',
2377 $ilDB = $DIC[
'ilDB'];
2379 if ($a_time ===
'') {
2380 $a_time = date(
'Y-m-d H:i:s');
2383 $item_set =
$ilDB->queryF(
2384 'SELECT * FROM personal_clipboard WHERE ' .
2385 'parent = %s AND item_id = %s AND type = %s AND user_id = %s',
2386 [
'integer',
'integer',
'text',
'integer'],
2387 [0, $a_item_id, $a_type, $this->
getId()]
2391 if (!$item_set->fetchRow()) {
2393 'INSERT INTO personal_clipboard ' .
2394 '(item_id, type, user_id, title, parent, insert_time, order_nr) VALUES ' .
2395 ' (%s,%s,%s,%s,%s,%s,%s)',
2396 [
'integer',
'text',
'integer',
'text',
'integer',
'timestamp',
'integer'],
2397 [$a_item_id, $a_type, $this->
getId(), $a_title, $a_parent, $a_time, $a_order_nr]
2401 'UPDATE personal_clipboard SET insert_time = %s ' .
2402 'WHERE user_id = %s AND item_id = %s AND type = %s AND parent = 0',
2403 [
'timestamp',
'integer',
'integer',
'text'],
2404 [$a_time, $this->
getId(), $a_item_id, $a_type]
2420 $a_time = date(
'Y-m-d H:i:s');
2423 $ilDB->insert(
'personal_pc_clipboard', [
2424 'user_id' => [
'integer', $this->
getId()],
2425 'content' => [
'clob', $a_content],
2426 'insert_time' => [
'timestamp', $a_time],
2427 'order_nr' => [
'integer', $a_nr]
2443 $set =
$ilDB->queryF(
'SELECT MAX(insert_time) mtime FROM personal_pc_clipboard ' .
2444 ' WHERE user_id = %s', [
'integer'], [$this->
getId()]);
2445 $row =
$ilDB->fetchAssoc($set);
2447 $set =
$ilDB->queryF(
2448 'SELECT * FROM personal_pc_clipboard ' .
2449 ' WHERE user_id = %s AND insert_time = %s ORDER BY order_nr ASC',
2450 [
'integer',
'timestamp'],
2451 [$this->
getId(), $row[
'mtime']]
2454 while ($row =
$ilDB->fetchAssoc($set)) {
2455 $content[] = $row[
'content'];
2468 $ilDB = $DIC[
'ilDB'];
2470 $set =
$ilDB->queryF(
2471 'SELECT * FROM personal_clipboard WHERE ' .
2472 'parent = %s AND type = %s AND user_id = %s',
2473 [
'integer',
'text',
'integer'],
2474 [0, $a_type, $this->
getId()]
2476 if (
$ilDB->fetchAssoc($set)) {
2488 'DELETE FROM personal_clipboard WHERE ' .
2489 'type = %s AND user_id = %s',
2490 [
'text',
'integer'],
2491 [$a_type, $this->
getId()]
2499 $ilDB = $DIC[
'ilDB'];
2501 $ilDB->manipulateF(
'DELETE FROM personal_clipboard WHERE ' .
2502 'user_id = %s', [
'integer'], [$this->
getId()]);
2509 string $a_type =
'',
2510 bool $a_top_nodes_only =
false 2514 $ilDB = $DIC[
'ilDB'];
2517 if ($a_top_nodes_only) {
2518 $par =
' AND parent = ' .
$ilDB->quote(0,
'integer') .
' ';
2521 $type_str = ($a_type !=
'')
2522 ?
' AND type = ' .
$ilDB->quote($a_type,
'text') .
' ' 2524 $q =
'SELECT * FROM personal_clipboard WHERE ' .
2525 'user_id = ' .
$ilDB->quote($this->
getId(),
'integer') .
' ' .
2527 ' ORDER BY order_nr';
2530 while ($obj =
$ilDB->fetchAssoc($objs)) {
2531 if ($obj[
'type'] ==
'mob') {
2537 if ($obj[
'type'] ==
'incl') {
2543 $objects[] = [
'id' => $obj[
'item_id'],
2544 'type' => $obj[
'type'],
'title' => $obj[
'title'],
2545 'insert_time' => $obj[
'insert_time']];
2555 string $a_insert_time
2559 $ilDB = $DIC[
'ilDB'];
2560 $ilUser = $DIC[
'ilUser'];
2562 $objs =
$ilDB->queryF(
2563 'SELECT * FROM personal_clipboard WHERE ' .
2564 'user_id = %s AND parent = %s AND insert_time = %s ' .
2565 ' ORDER BY order_nr',
2566 [
'integer',
'integer',
'timestamp'],
2567 [$ilUser->getId(), $a_parent, $a_insert_time]
2570 while ($obj =
$ilDB->fetchAssoc($objs)) {
2571 if ($obj[
'type'] ==
'mob') {
2574 $objects[] = [
'id' => $obj[
'item_id'],
2575 'type' => $obj[
'type'],
'title' => $obj[
'title'],
'insert_time' => $obj[
'insert_time']];
2590 $ilDB = $DIC[
'ilDB'];
2592 $q =
'SELECT DISTINCT user_id FROM personal_clipboard WHERE ' .
2593 'item_id = ' .
$ilDB->quote($a_id,
'integer') .
' AND ' .
2594 'type = ' .
$ilDB->quote($a_type,
'text');
2597 while ($user_rec =
$ilDB->fetchAssoc($user_set)) {
2598 $users[] = (
int) $user_rec[
'user_id'];
2610 $q =
'DELETE FROM personal_clipboard WHERE ' .
2611 'item_id = ' .
$ilDB->quote($a_item_id,
'integer') .
2612 ' AND type = ' .
$ilDB->quote($a_type,
'text') .
' ' .
2613 ' AND user_id = ' .
$ilDB->quote($this->
getId(),
'integer');
2622 $ilDB = $DIC[
'ilDB'];
2624 $query =
'SELECT obj_id FROM object_data WHERE import_id = ' .
2625 $ilDB->quote($i2_id,
'text');
2629 while ($row =
$ilDB->fetchObject(
$res)) {
2630 $id = (
int) $row->obj_id;
2641 return ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits($a_usr_id);
2646 return self::lookupOrgUnitsRepresentation($this->
getId());
2651 $this->auth_mode = $a_str;
2664 $this->ext_account = $a_str;
2679 string $a_auth_mode,
2680 bool $a_read_auth_default =
false 2684 $ilDB = $DIC[
'ilDB'];
2687 $q =
'SELECT login,usr_id,ext_account,auth_mode FROM usr_data ' .
2688 'WHERE auth_mode = %s';
2690 $values[] = $a_auth_mode;
2692 $q .=
' OR auth_mode = %s ';
2694 $values[] =
'default';
2699 while ($row =
$ilDB->fetchObject(
$res)) {
2700 if ($row->auth_mode ==
'default') {
2701 $accounts[$row->usr_id] = $row->login;
2703 $accounts[$row->usr_id] = $row->ext_account;
2715 $ilDB = $DIC[
'ilDB'];
2718 $q =
'UPDATE usr_data SET active = 1, inactivation_date = NULL WHERE ' .
2719 $ilDB->in(
'usr_id', $a_usr_ids,
false,
'integer');
2722 $usrId_IN_usrIds =
$ilDB->in(
'usr_id', $a_usr_ids,
false,
'integer');
2724 $q =
'UPDATE usr_data SET active = 0 WHERE $usrId_IN_usrIds';
2729 SET inactivation_date = %s 2730 WHERE inactivation_date IS NULL 2731 AND $usrId_IN_usrIds 2739 return (
string) self::_lookup($a_usr_id,
'auth_mode');
2749 bool $tryFallback =
true 2752 $settings =
$GLOBALS[
'DIC']->settings();
2756 'SELECT * FROM usr_data WHERE ' .
2757 ' ext_account = %s AND auth_mode = %s',
2759 [$a_account, $a_auth]
2762 return $usr[
'login'];
2765 if (!$tryFallback) {
2771 'SELECT login FROM usr_data ' .
2772 'WHERE login = %s AND auth_mode = %s AND (ext_account IS NULL OR ext_account = "") ',
2774 [$a_account, $a_auth]
2777 return $usr[
'login'];
2783 'SELECT login FROM usr_data WHERE ' .
2784 ' ext_account = %s AND auth_mode = %s',
2786 [$a_account,
'default']
2789 return $usr[
'login'];
2793 'SELECT login FROM usr_data ' .
2794 'WHERE login = %s AND (ext_account IS NULL OR ext_account = "") AND auth_mode = %s',
2796 [$a_account,
'default']
2799 return $usr[
'login'];
2812 $ilDB = $DIC[
'ilDB'];
2814 $r =
$ilDB->query(
'SELECT count(*) AS cnt, auth_mode FROM usr_data ' .
2815 'GROUP BY auth_mode');
2817 while ($cnt =
$ilDB->fetchAssoc(
$r)) {
2818 $cnt_arr[$cnt[
'auth_mode']] = (
int) $cnt[
'cnt'];
2828 $ilDB = $DIC[
'ilDB'];
2833 $q =
'SELECT * FROM usr_data WHERE ' .
2834 ' email = %s AND (auth_mode = %s ';
2835 $types = [
'text',
'text'];
2836 $values = [$a_email,
'local'];
2839 $q .=
' OR auth_mode = %s';
2841 $values[] =
'default';
2847 $usr_set =
$ilDB->queryF(
$q, $types, $values);
2848 while ($usr_rec =
$ilDB->fetchAssoc($usr_set)) {
2849 $users[$usr_rec[
'usr_id']] = $usr_rec[
'login'];
2868 $stream = Streams::ofResource(fopen($tmp_file,
'rb'));
2873 $DIC->resourceStorage()->manage()->replaceWithStream(
2880 $rid = $DIC->resourceStorage()->manage()->stream(
2897 string $a_size =
'small',
2898 bool $a_force_pic =
false 2900 if (isset(self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic])) {
2901 return self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic];
2904 self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic] = self::_getPersonalPicturePath($this->
getId(), $a_size, $a_force_pic);
2906 return self::$personal_image_cache[$this->
getId()][$a_size][(
int) $a_force_pic];
2916 return self::_getAvatar($this->
getId());
2922 $define->setSize(
'xsmall');
2923 return $define->getAvatar();
2932 string $a_size =
'small',
2933 bool $a_force_pic =
false,
2934 bool $a_prevent_no_photo_image =
false,
2935 bool $html_export =
false 2938 $define->setForcePicture($a_force_pic);
2939 $define->setSize($a_size);
2940 return $define->getLegacyPictureURL();
2947 $a_dir = trim(str_replace(
'..',
'', $a_dir));
2948 if ($a_dir ==
'' || !is_dir($a_dir)) {
2953 $irss = $DIC->resourceStorage();
2958 $stream = $irss->
consume()->stream($rid)->getStream();
2959 $target = $a_dir .
'/usr_' . $a_user_id .
'.jpg';
2960 fwrite(fopen($target,
'wb'), (
string) $stream);
2967 $image_dir = $webspace_dir .
'/usr_images';
2969 'upload_' . $a_user_id .
'pic',
2970 'usr_' . $a_user_id .
'.' .
'jpg',
2971 'usr_' . $a_user_id .
'_small.jpg',
2972 'usr_' . $a_user_id .
'_xsmall.jpg',
2973 'usr_' . $a_user_id .
'_xxsmall.jpg',
2974 'upload_' . $a_user_id];
2975 foreach ($images as $image) {
2976 if (is_file($image_dir .
'/' . $image)) {
2977 copy($image_dir .
'/' . $image, $a_dir .
'/' . $image);
2984 bool $a_do_update =
true 2987 $rid = $this->irss->manage()->find($this->
getAvatarRid());
2994 $this->
setPref(
'profile_image',
'');
3002 foreach ($a_data as $field =>
$data) {
3003 $this->user_defined_data[
'f_' . $field] =
$data;
3009 return $this->user_defined_data ?: [];
3015 foreach ($this->user_defined_data as $field => $value) {
3016 if ($field !==
'usr_id' && $value !==
null) {
3017 $udata->set($field, $value);
3026 $this->user_defined_data = $udata->getAll();
3038 public function getProfileAsString(
Language $language):
string 3042 $rbacreview = $DIC[
'rbacreview'];
3047 $body = ($language->
txt(
'login') .
': ' . $this->
getLogin() .
"\n");
3050 $body .= ($language->
txt(
'title') .
': ' . $this->
getUTitle() .
"\n");
3053 $body .= ($language->
txt(
'gender') .
': ' . $language->
txt(
'gender_' . strtolower($this->
getGender())) .
"\n");
3056 $body .= ($language->
txt(
'firstname') .
': ' . $this->
getFirstname() .
"\n");
3059 $body .= ($language->
txt(
'lastname') .
': ' . $this->
getLastname() .
"\n");
3062 $body .= ($language->
txt(
'institution') .
': ' . $this->
getInstitution() .
"\n");
3065 $body .= ($language->
txt(
'department') .
': ' . $this->
getDepartment() .
"\n");
3068 $body .= ($language->
txt(
'street') .
': ' . $this->
getStreet() .
"\n");
3070 if (strlen($this->
getCity())) {
3071 $body .= ($language->
txt(
'city') .
': ' . $this->
getCity() .
"\n");
3074 $body .= ($language->
txt(
'zipcode') .
': ' . $this->
getZipcode() .
"\n");
3077 $body .= ($language->
txt(
'country') .
': ' . $this->
getCountry() .
"\n");
3083 $body .= ($language->
txt(
'phone_office') .
': ' . $this->
getPhoneOffice() .
"\n");
3086 $body .= ($language->
txt(
'phone_home') .
': ' . $this->
getPhoneHome() .
"\n");
3089 $body .= ($language->
txt(
'phone_mobile') .
': ' . $this->
getPhoneMobile() .
"\n");
3091 if (strlen($this->
getFax())) {
3092 $body .= ($language->
txt(
'fax') .
': ' . $this->
getFax() .
"\n");
3095 $body .= ($language->
txt(
'email') .
': ' . $this->
getEmail() .
"\n");
3099 $body .= ($language->
txt(
'second_email') .
': ' . $this->
getSecondEmail() .
"\n");
3102 $body .= ($language->
txt(
'hobby') .
': ' . $this->
getHobby() .
"\n");
3105 $body .= ($language->
txt(
'referral_comment') .
': ' . $this->
getComment() .
"\n");
3116 $body .= ($language->
txt(
'create_date') .
': ' . $date .
"\n");
3120 foreach ($rbacreview->getGlobalRoles() as $role) {
3121 if ($rbacreview->isAssigned($this->getId(), $role)) {
3126 $body .= ($language->
txt(
'reg_role_info') .
': ' . implode(
',', $gr) .
"\n");
3131 $body .= ($language->
txt(
'time_limit') .
': ' . $language->
txt(
'crs_unlimited') .
"\n");
3144 $body .= $language->
txt(
'time_limit') .
': ' .
3145 $language->
txt(
'from') .
' ' .
3156 foreach ($user_defined_fields->getDefinitions() as $field_id => $definition) {
3157 $data = $user_defined_data[
'f_' . $field_id] ??
'';
3161 preg_replace(
'/<br(\s*)?\/?>/i',
"\n",
$data)
3165 $body .= $definition[
'field_name'] .
': ' .
$data .
"\n";
3177 bool $a_create =
false 3181 $ilDB = $DIC[
'ilDB'];
3183 if ($a_user_id > 0) {
3184 $set =
$ilDB->queryF(
3185 'SELECT feed_hash from usr_data WHERE usr_id = %s',
3189 if ($rec =
$ilDB->fetchAssoc($set)) {
3190 if (strlen($rec[
'feed_hash']) == 32) {
3191 return $rec[
'feed_hash'];
3192 } elseif ($a_create) {
3193 $hash = md5(random_int(1, 9999999) + str_replace(
' ',
'', microtime()));
3195 'UPDATE usr_data SET feed_hash = %s' .
3196 ' WHERE usr_id = %s',
3197 [
'text',
'integer'],
3215 if ($a_user_id > 0) {
3216 return self::_lookupPref($a_user_id,
'priv_feed_pass');
3232 ($a_password ==
'') ?
'' : md5($a_password)
3246 $ilDB = $DIC[
'ilDB'];
3248 $q =
'SELECT DISTINCT login, usr_id FROM usr_data ' .
3251 $values[] = $a_login;
3253 if ($a_user_id != 0) {
3254 $q .=
' AND usr_id != %s ';
3255 $types[] =
'integer';
3256 $values[] = $a_user_id;
3259 $r =
$ilDB->queryF(
$q, $types, $values);
3261 if ($row =
$ilDB->fetchAssoc(
$r)) {
3262 return (
int) $row[
'usr_id'];
3271 string $a_external_account,
3276 $ilDB = $DIC[
'ilDB'];
3279 'SELECT * FROM usr_data ' .
3280 'WHERE ext_account = %s AND auth_mode = %s',
3282 [$a_external_account, $a_auth_mode]
3297 $ilDB = $DIC[
'ilDB'];
3298 $rbacreview = $DIC[
'rbacreview'];
3299 $ids = $rbacreview->assignedUsers($role_id);
3301 if (count($ids) == 0) {
3305 $query =
'SELECT usr_data.*, usr_pref.value AS language 3307 LEFT JOIN usr_pref ON usr_pref.usr_id = usr_data.usr_id AND usr_pref.keyword = %s 3308 WHERE ' .
$ilDB->in(
'usr_data.usr_id', $ids,
false,
'integer');
3309 $values[] =
'language';
3313 if (is_numeric($active) && $active > -1) {
3314 $query .=
' AND usr_data.active = %s';
3316 $types[] =
'integer';
3319 $query .=
' ORDER BY usr_data.lastname, usr_data.firstname ';
3321 $r =
$ilDB->queryF($query, $types, $values);
3323 while ($row =
$ilDB->fetchAssoc(
$r)) {
3340 $ilDB = $DIC[
'ilDB'];
3341 $query =
'SELECT usr_data.*, usr_pref.value AS language FROM usr_data LEFT JOIN usr_pref ON usr_pref.usr_id = usr_data.usr_id and usr_pref.keyword = %s WHERE 1=1';
3343 $values[] =
'language';
3345 if (is_numeric($active) && $active > -1) {
3346 $query .=
' AND usr_data.active = %s';
3348 $types[] =
'integer';
3352 $query .=
' AND usr_data.time_limit_owner = %s';
3354 $types[] =
'integer';
3357 $query .=
' AND usr_data.usr_id != %s ';
3359 $types[] =
'integer';
3361 $query .=
' ORDER BY usr_data.lastname, usr_data.firstname ';
3363 $result =
$ilDB->queryF($query, $types, $values);
3365 while ($row =
$ilDB->fetchAssoc($result)) {
3382 return self::_getUsersForIds($a_mem_ids, $active);
3394 int $timelimitowner = -1
3398 $ilDB = $DIC[
'ilDB'];
3400 $query =
'SELECT usr_data.*, usr_pref.value AS language 3402 LEFT JOIN usr_pref ON usr_pref.usr_id = usr_data.usr_id AND usr_pref.keyword = %s 3403 WHERE ' .
$ilDB->in(
'usr_data.usr_id', $a_mem_ids,
false,
'integer') .
' 3404 AND usr_data.usr_id != %s';
3405 $values[] =
'language';
3408 $types[] =
'integer';
3410 if (is_numeric($active) && $active > -1) {
3411 $query .=
' AND active = %s';
3413 $types[] =
'integer';
3416 if ($timelimitowner !=
USER_FOLDER_ID && $timelimitowner != -1) {
3417 $query .=
' AND usr_data.time_limit_owner = %s';
3418 $values[] = $timelimitowner;
3419 $types[] =
'integer';
3422 $query .=
' ORDER BY usr_data.lastname, usr_data.firstname ';
3424 $result =
$ilDB->queryF($query, $types, $values);
3426 while ($row =
$ilDB->fetchAssoc($result)) {
3443 $ilDB = $DIC[
'ilDB'];
3446 if (is_array($a_internalids)) {
3447 foreach ($a_internalids as $internalid) {
3448 if (is_numeric($internalid)) {
3449 $ids[] = $internalid;
3452 if (is_numeric($parsedid) && $parsedid > 0) {
3458 if (count($ids) == 0) {
3462 $query =
'SELECT usr_data.*, usr_pref.value AS language 3465 ON usr_pref.usr_id = usr_data.usr_id AND usr_pref.keyword = %s 3466 WHERE ' .
$ilDB->in(
'usr_data.usr_id', $ids,
false,
'integer');
3467 $values[] =
'language';
3470 $query .=
' ORDER BY usr_data.lastname, usr_data.firstname ';
3473 $result =
$ilDB->queryF($query, $types, $values);
3474 while ($row =
$ilDB->fetchAssoc($result)) {
3490 $ilDB = $DIC[
'ilDB'];
3495 'SELECT * FROM usr_pref WHERE usr_id = %s',
3500 while ($row =
$ilDB->fetchAssoc(
$r)) {
3501 $prefs[$row[
'keyword']] = $row[
'value'];
3518 $ilDB = $DIC[
'ilDB'];
3521 $set =
$ilDB->query(
3522 'SELECT usr_id FROM usr_pref ' .
3523 ' WHERE keyword = ' .
$ilDB->quote($a_keyword,
'text') .
3524 ' AND ' .
$ilDB->in(
'usr_id', $a_user_ids,
false,
'integer') .
3525 ' AND value = ' .
$ilDB->quote($a_val,
'text')
3527 while ($rec =
$ilDB->fetchAssoc($set)) {
3528 $users[] = $rec[
'usr_id'];
3538 $ilDB = $DIC[
'ilDB'];
3540 $query =
'SELECT login_attempts FROM usr_data WHERE usr_id = %s';
3541 $result =
$ilDB->queryF($query, [
'integer'], [$a_usr_id]);
3542 $record =
$ilDB->fetchAssoc($result);
3543 return (
int) ($record[
'login_attempts'] ?? 0);
3551 $ilDB = $DIC[
'ilDB'];
3553 $query =
'UPDATE usr_data SET login_attempts = (login_attempts + 1) WHERE usr_id = %s';
3554 $affected =
$ilDB->manipulateF($query, [
'integer'], [$a_usr_id]);
3568 $ilDB = $DIC[
'ilDB'];
3570 $query =
'UPDATE usr_data SET active = 0, inactivation_date = %s WHERE usr_id = %s';
3571 $affected =
$ilDB->manipulateF($query, [
'timestamp',
'integer'], [
ilUtil::now(), $a_usr_id]);
3585 return in_array($this->
getPref(
'public_profile'), [
'y',
'g']);
3606 $ilDB = $DIC[
'ilDB'];
3611 'SELECT * FROM loginname_history WHERE usr_id = %s AND login = %s AND history_date = %s',
3612 [
'integer',
'text',
'integer'],
3619 INSERT INTO loginname_history 3620 (usr_id, login, history_date) 3621 VALUES (%s, %s, %s)',
3622 [
'integer',
'text',
'integer'],
3634 bool $a_no_anonymous =
false 3638 $ilDB = $DIC->database();
3643 $atime = $pd_set->get(
'user_activity_time') * 60;
3648 if ($a_user_id === 0) {
3649 $where[] =
'user_id > 0';
3651 $where[] =
'user_id = ' .
$ilDB->quote($a_user_id,
'integer');
3654 if ($a_no_anonymous) {
3662 $where[] =
'expires > ' .
$ilDB->quote($ctime,
'integer');
3663 $where[] =
'(p.value IS NULL OR NOT p.value = ' .
$ilDB->quote(
'y',
'text') .
')';
3665 $where =
'WHERE ' . implode(
' AND ', $where);
3669 SELECT COUNT(user_id) num, user_id, firstname, lastname, title, login, last_login, MAX(ctime) ctime, context, agree_date 3671 LEFT JOIN usr_data u 3672 ON user_id = u.usr_id 3673 LEFT JOIN usr_pref p 3674 ON (p.usr_id = u.usr_id AND p.keyword = %s) 3676 GROUP BY user_id, firstname, lastname, title, login, last_login, context, agree_date 3677 ORDER BY lastname, firstname 3680 [
'hide_own_online_status']
3687 if ($atime <= 0 ||
$user[
'ctime'] + $atime > $ctime) {
3692 $log->
debug(
'Found users: ' . count($users));
3694 $hide_users = $DIC[
'legalDocuments']->usersWithHiddenOnlineStatus(
array_map(intval(...), array_column($users,
'user_id')));
3695 $users = array_filter(
3697 fn(
$user) => !in_array((
int)
$user[
'user_id'], $hide_users,
true)
3711 $ilDB = $DIC[
'ilDB'];
3716 $hashcode = substr(md5(uniqid(mt_rand(),
true)), 0, 16);
3720 SELECT COUNT(usr_id) cnt FROM usr_data 3721 WHERE reg_hash = %s',
3726 if ($row->cnt > 0) {
3741 [
'text',
'integer'],
3742 [$hashcode, $a_usr_id]
3761 $ilDB = $DIC[
'ilDB'];
3765 SELECT usr_id, create_date FROM usr_data 3766 WHERE reg_hash = %s',
3770 while ($row =
$ilDB->fetchAssoc(
$res)) {
3773 if ($oRegSettigs->getRegistrationHashLifetime() != 0 &&
3774 time() - $oRegSettigs->getRegistrationHashLifetime() > strtotime($row[
'create_date'])) {
3776 'reg_confirmation_hash_life_time_expired',
3777 (
int) $row[
'usr_id']
3786 [
'text',
'integer'],
3787 [
'', (
int) $row[
'usr_id']]
3790 return (
int) $row[
'usr_id'];
3798 if ($a_birthday && strlen($a_birthday)) {
3802 $this->birthday =
null;
3822 if ($periodInDays < 1) {
3826 $date = date(
'Y-m-d H:i:s', (time() - ($periodInDays * 24 * 60 * 60)));
3828 $query =
'SELECT usr_id FROM usr_data WHERE last_login IS NOT NULL AND last_login < %s';
3832 $types = [
'timestamp'];
3835 $res = $DIC->database()->queryF($query, $types, $values);
3836 while ($row = $DIC->database()->fetchAssoc(
$res)) {
3837 $ids[] = (
int) $row[
'usr_id'];
3849 int $thresholdInDays
3853 $date = date(
'Y-m-d H:i:s', (time() - ($thresholdInDays * 24 * 60 * 60)));
3855 $query =
'SELECT usr_id FROM usr_data WHERE last_login IS NULL AND create_date < %s';
3859 $types = [
'timestamp'];
3862 $res = $DIC->database()->queryF($query, $types, $values);
3863 while ($row = $DIC->database()->fetchAssoc(
$res)) {
3864 $ids[] = (
int) $row[
'usr_id'];
3880 $field =
'inactivation_date';
3889 $ilDB = $DIC[
'ilDB'];
3891 $date = date(
'Y-m-d H:i:s', (time() - ($period * 24 * 60 * 60)));
3893 $query =
"SELECT usr_id FROM usr_data WHERE $field < %s AND active = %s";
3895 $res =
$ilDB->queryF($query, [
'timestamp',
'integer'], [$date, 0]);
3899 $ids[] = (
int) $row->usr_id;
3909 $query =
'UPDATE object_data SET owner = 0 ' .
3910 'WHERE owner = ' .
$ilDB->quote($this->
getId(),
'integer');
3911 $ilDB->query($query);
3919 ?array $user_ids =
null 3923 $ilDB = $DIC->database();
3925 $q =
'SELECT DISTINCT ' .
$ilDB->upper(
$ilDB->substr(
'lastname', 1, 1)) .
' let' .
3928 ($user_ids !==
null ?
' AND ' .
$ilDB->in(
'usr_id', $user_ids,
false,
'integer') :
'') .
3933 while ($let_rec =
$ilDB->fetchAssoc($let_set)) {
3934 $let[$let_rec[
'let']] = $let_rec[
'let'];
3940 array $a_usr_ids = []
3944 $ilDB = $DIC[
'ilDB'];
3946 $query =
'SELECT count(*) num FROM object_data od ' .
3947 'JOIN usr_data ud ON obj_id = usr_id ' .
3948 'WHERE ' .
$ilDB->in(
'obj_id', $a_usr_ids,
false,
'integer') .
' ';
3951 return $num_rows == count($a_usr_ids);
3964 'components/ILIAS/User',
3973 if (!is_dir($dir)) {
3977 if (is_int(strpos($entry[
'entry'],
'.zip'))) {
3978 return $entry[
'entry'];
3989 if (is_file($file)) {
3996 bool $a_profile_data,
4003 $imp->addSkipImporter(
'components/ILIAS/Bookmarks');
4004 if (!$a_profile_data) {
4005 $imp->addSkipEntity(
'components/ILIAS/User',
'usr_profile');
4008 $imp->addSkipEntity(
'components/ILIAS/User',
'usr_setting');
4011 $imp->addSkipEntity(
'components/ILIAS/Notes',
'user_notes');
4014 $imp->addSkipEntity(
'components/ILIAS/Calendar',
'calendar');
4017 $a_file[
'tmp_name'],
4020 'components/ILIAS/User' 4036 return self::_isAnonymous($this->
getId());
4056 return (
bool) $this->
getPref(
'delete_flag');
4061 $this->is_self_registered = $status;
4079 $this->interests_general = $value ?? [];
4103 $this->interests_help_offered = $value ?? [];
4127 $this->interests_help_looking = $value ?? [];
4153 if (count($a_attr) > 0) {
4154 return implode(
', ', $a_attr);
4163 $ilDB = $DIC[
'ilDB'];
4165 if (!$this->
getId()) {
4169 $set =
$ilDB->query(
'SELECT field_id,value' .
4170 ' FROM usr_data_multi' .
4171 ' WHERE usr_id = ' .
$ilDB->quote($this->getId(),
'integer') .
4173 while ($row =
$ilDB->fetchAssoc($set)) {
4174 $values[$row[
'field_id']][] = $row[
'value'];
4177 if (isset($values[
'interests_general'])) {
4182 if (isset($values[
'interests_help_offered'])) {
4187 if (isset($values[
'interests_help_looking'])) {
4198 $ilDB = $DIC[
'ilDB'];
4200 if (!$this->
getId()) {
4214 foreach ($map as
$id => $values) {
4215 if (is_array($values) && count($values)) {
4216 foreach ($values as $value) {
4217 $value = trim($value);
4219 $uniq_id =
$ilDB->nextId(
'usr_data_multi');
4221 $ilDB->manipulate(
'INSERT usr_data_multi' .
4222 ' (id,usr_id,field_id,value) VALUES' .
4223 ' (' .
$ilDB->quote($uniq_id,
'integer') .
4224 ',' .
$ilDB->quote($this->
getId(),
'integer') .
4226 ',' .
$ilDB->quote($value,
'text') .
4238 $ilDB = $DIC[
'ilDB'];
4240 if (!$this->
getId()) {
4244 $ilDB->manipulate(
'DELETE FROM usr_data_multi' .
4245 ' WHERE usr_id = ' .
$ilDB->quote($this->getId(),
'integer'));
4250 ?
int $a_user_id =
null,
4251 ?
string $a_field_id =
null 4255 $ilDB = $DIC[
'ilDB'];
4259 $sql =
'SELECT DISTINCT(value)' .
4260 ' FROM usr_data_multi' .
4261 ' WHERE ' .
$ilDB->like(
'value',
'text',
'%' . $a_term .
'%');
4263 $sql .=
' AND field_id = ' .
$ilDB->quote($a_field_id,
'text');
4266 $sql .=
' AND usr_id <> ' .
$ilDB->quote($a_user_id,
'integer');
4268 $sql .=
' ORDER BY value';
4269 $set =
$ilDB->query($sql);
4270 while ($row =
$ilDB->fetchAssoc($set)) {
4271 $res[] = $row[
'value'];
4290 $ilDB = $DIC->database();
4292 $set =
$ilDB->query(
4293 'SELECT * FROM usr_pref ' .
4294 ' WHERE keyword = ' .
$ilDB->quote(
'public_profile',
'text') .
4295 ' AND ' .
$ilDB->in(
'usr_id', $a_user_ids,
false,
'integer')
4303 while ($rec =
$ilDB->fetchAssoc($set)) {
4304 if ($rec[
'value'] ==
'g') {
4305 $r[
'global'][] = $rec[
'usr_id'];
4306 $r[
'public'][] = $rec[
'usr_id'];
4308 if ($rec[
'value'] ==
'y') {
4309 $r[
'local'][] = $rec[
'usr_id'];
4310 $r[
'public'][] = $rec[
'usr_id'];
4313 foreach ($a_user_ids as
$id) {
4314 if (!in_array($id,
$r[
'public'])) {
4315 $r[
'not_public'][] =
$id;
getCurrentLanguage()
returns the current language (may differ from user's pref setting!)
static getWebspaceDir(string $mode="filesystem")
get webspace directory
static hasActiveSession(int $a_user_id, string $a_session_id)
setUTitle(string $a_str)
set user title (note: don't mix up this method with setTitle() that is derived from ilObject and sets...
setProfileIncomplete(bool $a_prof_inc)
static get(string $a_var)
setTimeLimitUnlimited(bool $a_unlimited)
static array static setUseRelativeDates(bool $a_status)
set use relative dates
static _setFeedPass(int $a_user_id, string $a_password)
Set news feed password for user.
setClientIP(string $a_str)
setAvatarRid(?string $avatar_rid)
getStoredActive(int $a_id)
get user active state
setLastLogin(string $a_str)
static _getUsersForRole(int $role_id, int $active=-1)
return array of complete users which belong to a specific role
resetPassword(string $raw, string $raw_retype)
Resets the user password.
refreshLogin()
updates the login data of a 'user'
static _getLoginAttempts(int $a_usr_id)
static _destroyByUserId(int $a_user_id)
Destroy session.
static copyProfilePicturesToDirectory(int $a_user_id, string $a_dir)
static _deleteUser(int $a_usr_id)
getPersonalPicturePath(string $a_size='small', bool $a_force_pic=false)
static _lookupLanguage(int $a_usr_id)
buildTextFromArray(array $a_attr)
Convert multi-text values to plain text.
static getLogger(string $a_component_id)
Get component logger.
static _getAllUserData(?array $a_fields=null, int $active=-1)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getAuthMode(?string $a_auth_mode)
writePref(string $a_keyword, string $a_value)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setAgreeDate(?string $a_str)
array $interests_help_looking
static styleExists(string $style_id)
static getUserIdsByInactivityPeriod(int $periodInDays)
Get ids of all users that have been inactive for at least the given period.
static lookupMatriculation(int $a_usr_id)
static getFirstLettersOfLastnames(?array $user_ids=null)
Get first letters of all lastnames.
__construct(int $a_user_id=0, bool $a_call_by_reference=false)
static getProfileStatusOfUsers(array $a_user_ids)
Get profile status.
static _verifyRegistrationHash(string $a_hash)
Verifies a registration hash.
assignData(array $a_data)
loads a record 'user' from array
fetchAssoc(ilDBStatement $statement)
static _externalAccountExists(string $a_external_account, string $a_auth_mode)
Check if an external account name already exists.
setMatriculation(string $a_str)
static _lookupFullname(int $a_user_id)
isPasswordChangeDemanded()
getGeneralInterestsAsText()
Get general interests as plain text.
getDefaultLanguage()
Return default language.
getOrgUnitsRepresentation()
Class for user related exception handling in ILIAS.
setPhoneOffice(string $a_str)
addToPCClipboard(string $a_content, string $a_time, int $a_nr)
Add a page content item to PC clipboard (should go to another class)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _moveUsersToStyle(string $a_from_skin, string $a_from_style, string $a_to_skin, string $a_to_style)
static _getPreferences(int $user_id)
get preferences for user
removeObjectFromClipboard(int $a_item_id, string $a_type)
getPasswordPolicyResetStatus()
static _removeTrackingDataForUser(int $user_id)
to be called from IlObjUser
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
updateLogin(string $a_login)
update login name
setSelectedCountry(string $a_val)
Set selected country (selection drop down)
deletePref(string $a_keyword)
static _lookupLastLogin(int $a_user_id)
array $interests_help_offered
string $time_limit_message
static array $personal_image_cache
setFullname()
builds a string with title + firstname + lastname method is used to build fullname in member variable...
static _writeAuthMode(int $a_usr_id, string $a_auth_mode)
static _lookupName(int $a_user_id)
lookup user name
static resetToDefaults()
reset to defaults
static _lookupId($a_user_str)
static lookupTitle(int $a_page_id)
static _deleteSettingsOfUser(int $a_user)
getFullname(int $a_max_strlen=0)
removeUserPicture(bool $a_do_update=true)
static getUserIdsByEmail(string $a_email)
static _lookupPref(int $a_usr_id, string $a_keyword)
addObjectToClipboard(int $a_item_id, string $a_type, string $a_title, int $a_parent=0, string $a_time='', int $a_order_nr=0)
add an item to user's personal clipboard
loadLanguageModule(string $a_module)
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
static getUserSubsetByPreferenceValue(array $a_user_ids, string $a_keyword, string $a_val)
For a given set of user IDs return a subset that has a given user preference set. ...
getCreateDate()
Get create date in YYYY-MM-DD HH-MM-SS format.
static _lookupExternalAccount(int $a_user_id)
static _getUsersForGroup(array $a_mem_ids, int $active=-1)
return user data for group members
static _deleteByUser(int $a_usr_id)
static _needsExternalAccountByAuthMode($a_auth_mode)
Check if chosen auth mode needs an external account entry.
static setLanguage(ilLanguage $a_lng)
static _lookupAuthMode(int $a_usr_id)
login()
description: > Example for rendring a login glyph.
setPasswordSalt(?string $password_salt)
static lookupOrgUnitsRepresentation(int $a_usr_id)
lookup org unit representation
static _lookupGender(int $a_user_id)
setTimeLimitUntil(?int $a_until)
static _getAuthModeName($a_auth_key)
static _uploadPersonalPicture(string $tmp_file, int $obj_id)
Create a personal picture image file from a temporary image file.
setLoginAttempts(int $a_login_attempts)
static now()
Return current timestamp in Y-m-d H:i:s format.
static _deleteAllPref(int $a_user_id)
Deletes a userpref value of the user from the database.
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object
setInstitution(string $a_str)
getPublicName()
returns firstname lastname and login if profile is public, login otherwise
deleteUserDefinedFieldEntries()
getAuthMode(bool $a_auth_key=false)
static _deleteUser(int $a_usr_id)
getOfferingHelpAsText()
Get help offering as plain text.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setLatitude(?string $a_latitude)
setComment(string $a_str)
setPasswd(string $a_str, string $a_type=ilObjUser::PASSWD_PLAIN)
updateUserDefinedFields()
int $last_password_change_ts
static _getAvatar(int $a_usr_id)
setExternalAccount(string $a_str)
static _getNumberOfUsersForStyle(string $a_skin, string $a_style)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
setPasswordPolicyResetStatus(bool $status)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setBirthday(?string $a_birthday)
static _writeExternalAccount(int $a_usr_id, string $a_ext_id)
static _getInstance()
Get singleton instance of this class.
bool $time_limit_unlimited
static _getExternalAccountsByAuthMode(string $a_auth_mode, bool $a_read_auth_default=false)
Get list of external account by authentication method Note: If login == ext_account for two user with...
static getUserIdByLogin(string $a_login)
writeAccepted()
write accept date of user agreement
static _getLastHistoryDataByUserId(int $a_usr_id)
Returns the last used loginname and the changedate of the passed user_id.
ilAppEventHandler $app_event_handler
setActive(bool $a_active, int $a_owner=0)
set user active state and updates system fields appropriately
resetLastPasswordChange()
txt(string $a_topic, string $a_default_lang_fallback_mod="")
getClipboardObjects(string $a_type='', bool $a_top_nodes_only=false)
get all clipboard objects of user and specified type
static userExists(array $a_usr_ids=[])
static _lookupClientIP(int $a_user_id)
setDepartment(string $a_str)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
static deleteEntriesOfUser(int $a_user_id)
setOfferingHelp(?array $value=null)
getLastPasswordChangeTS()
static getLoginFromAuth()
Gets the username from $ilAuth, and converts it into an ILIAS login name.
clipboardDeleteObjectsOfType(string $a_type)
static getUserLoginsByEmail(string $a_email)
getLoginByUserId(int $a_userid)
This describes how a letter or a picture avatar could be modified during construction of UI...
static _getFeedPass(int $a_user_id)
Lookup news feed password for user.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static _generateRegistrationHash(int $a_usr_id)
Generates a unique hashcode for activating a user profile after registration.
static styleExistsForSkinId(string $skin_id, string $style_id)
setApproveDate(?string $a_str)
set date the user account was activated null indicates that the user has not yet been activated ...
Mail Box class Base class for creating and handling mail boxes.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _setUserInactive(int $a_usr_id)
setPhoneHome(string $a_str)
static _getNumberOfUsersPerAuthMode()
get number of users per auth mode
static _toggleActiveStatusOfUsers(array $a_usr_ids, bool $a_status)
static _loginExists(string $a_login, int $a_user_id=0)
check if a login name already exists You may exclude a user from the check by giving his user id as 2...
static removeForUser(int $user_id)
Remove all notifications for given user.
getPref(string $a_keyword)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
setInactivationDate(?string $inactivation_date)
syncActive()
synchronizes current and stored user active values for the owner value to be set correctly, this function should only be called when an admin is approving a user account
static _getUsersOnline(int $a_user_id=0, bool $a_no_anonymous=false)
reads all active sessions from db and returns users that are online OR returns only one active user i...
updateOwner()
update owner of object in db
static _deletePref(int $a_user_id, string $a_keyword)
static _getUserData(array $a_internalids)
return user data for given user ids
checkUserId()
check user id with login name
Class ilObjForumAdministration.
static _writeHistory(int $a_usr_id, string $a_login)
getLookingForHelpAsText()
Get help looking for as plain text.
setIsSelfRegistered(bool $status)
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
static _lookupFields(int $a_user_id)
lookup fields (deprecated; use more specific methods instead)
bool $passwd_policy_reset
setPref(string $a_keyword, ?string $a_value)
Class ilUserAvatarResolver.
static _getUserIdsByInactivationPeriod(int $period)
get ids of all users that have been inactivated since at least the given period
setFirstLogin(string $a_str)
setCountry(string $a_str)
queryF(string $query, array $types, array $values)
getPCClipboardContent()
Add a page content item to PC clipboard (should go to another class)
static _isAnonymous(int $usr_id)
existsPref(string $a_keyword)
importPersonalData(array $a_file, bool $a_profile_data, bool $a_settings, bool $a_notes, bool $a_calendar)
foreach($mandatory_scripts as $file) $timestamp
setPhoneMobile(string $a_str)
getSelectedCountry()
Get selected country (selection drop down)
static deleteByUserId(int $a_user_id)
setLastPasswordChangeTS(int $a_last_password_change_ts)
setLastname(string $a_str)
setPasswordEncodingType(?string $password_encryption_type)
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
static _doesLoginnameExistInHistory(string $a_login)
Checks whether the passed loginname already exists in history.
static _getUsersForClipboadObject(string $a_type, int $a_id)
get all users, that have a certain object within their clipboard
static deleteUserPortfolios(int $a_user_id)
Delete all portfolio data for user.
Class ilObjAuthSettingsGUI.
getPersonalDataExportFile()
static findInterests(string $a_term, ?int $a_user_id=null, ?string $a_field_id=null)
static skinExists(string $skin_id, ?ilSystemStyleConfig $system_style_config=null)
Check whether a skin exists.
static _incrementLoginAttempts(int $a_usr_id)
string $last_profile_prompt
static _lookupFeedHash(int $a_user_id, bool $a_create=false)
Lookup news feed hash for user.
setLastProfilePrompt(string $a_str)
static _getImportedUserId(string $i2_id)
static _getUsersForFolder(int $ref_id, int $active)
get users for a category or from system folder
setLanguage(string $a_str)
static _readUsersProfileData(array $a_user_ids)
static _lookup(int $a_user_id, string $a_field)
static __extractId(string $ilias_id, int $inst_id)
extract ref id from role title, e.g.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static toUsernameWithoutDomain(string $a_login)
Static function removes Microsoft domain name from username webdav related.
__construct(Container $dic, ilPlugin $plugin)
setTimeLimitOwner(int $a_owner)
updateMultiTextFields(bool $a_create=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
setSecondEmail(?string $second_email)
string $password_encoding_type
static _writePref(int $a_usr_id, string $a_keyword, string $a_value)
setLongitude(?string $a_longitude)
setLocationZoom(?int $a_locationzoom)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
DateFormatFactory $date_format_factory
setLastPasswordChangeToNow()
setZipcode(string $a_str)
ilCronDeleteInactiveUserReminderMail $cron_delete_user_reminder_mail
setTimeLimitMessage(string $a_time_limit_message)
static _lookupFirstLogin(int $a_user_id)
debug(string $message, array $context=[])
Class for user related exception handling in ILIAS.
setUserDefinedData(array $a_data)
static _lookupType(int $id, bool $reference=false)
setGeneralInterests(?array $value=null)
setTimeLimitFrom(?int $a_from)
getClipboardChilds(int $a_parent, string $a_insert_time)
Get children of an item.
setFirstname(string $a_str)
string $inactivation_date
static _lookupEmail(int $a_user_id)
static clear(string $a_var)
static _getInstance()
Get instance of ilSecuritySettings.
getPasswordEncodingType()
static set(string $a_var, $a_val)
Set a value.
static _getUsersForIds(array $a_mem_ids, int $active=-1, int $timelimitowner=-1)
return user data for given user id
setAuthMode(?string $a_str)
setCurrentLanguage(string $a_val)
Set current language.
static _lookupActive(int $a_usr_id)
hasPublicProfile()
returns true if public is profile, false otherwise
static _getAllUserAssignedStyles()
setLastUpdate(string $a_str)
static getUserIdsNeverLoggedIn(int $thresholdInDays)
Get ids of all users that have never logged in.
static _removeTrackingDataForUser(int $user_id)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.
static _getLocalAccountsForEmail(string $a_email)
clipboardHasObjectsOfType(string $a_type)
Check whether clipboard has objects of a certain type.
static _lookupLogin(int $a_user_id)
setLookingForHelp(?array $value=null)