213 string $a_xml_file =
'',
220 $this->roles = array();
221 $this->mode = $a_mode;
222 $this->conflict_rule = $a_conflict_rule;
224 $this->protocol = array();
225 $this->logins = array();
226 $this->userCount = 0;
227 $this->localRoleCache = array();
228 $this->parentRolesCache = array();
229 $this->send_mail =
false;
236 $this->userStyles = array();
237 $skins = ilStyleDefinition::getAllSkins();
239 if (is_array($skins)) {
240 foreach ($skins as $skin) {
241 foreach ($skin->getStyles() as
$style) {
245 $this->userStyles [] = $skin->getId() .
":" . $style->getId();
251 $this->acc_mail->setAttachConfiguredFiles(
true);
252 $this->acc_mail->useLangVariablesAsFallback(
true);
256 $request = new \ILIAS\User\StandardGUIRequest(
260 $this->req_send_mail = $request->getSendMail();
271 $this->folder_id = $a_folder_id;
288 xml_set_object($a_xml_parser, $this);
289 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
290 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
300 $this->role_assign = $a_assign;
310 if ($type ===
"end") {
316 if (is_array($attr)) {
317 foreach ($attr as $k => $v) {
318 $tag .=
" " . $k .
"=\"$v\"";
332 switch ($this->mode) {
358 $this->current_role_id = $a_attribs[
"Id"];
360 $this->current_role_id = $internal_id;
362 $this->current_role_type = $a_attribs[
"Type"];
377 $ilias = $DIC[
'ilias'];
382 $this->current_role_id = $a_attribs[
"Id"];
384 $this->current_role_id = $internal_id;
386 $this->current_role_type = $a_attribs[
"Type"];
387 $this->current_role_action = (!isset($a_attribs[
"Action"])) ?
"Assign" : $a_attribs[
"Action"];
390 case "PersonalPicture":
391 $this->personalPicture = array(
392 "encoding" => $a_attribs[
"encoding"],
393 "imagetype" => $a_attribs[
"imagetype"],
399 $this->skin = $a_attribs[
"Skin"];
400 $this->style = $a_attribs[
"Style"];
404 $this->containedTags = [];
406 $this->acc_mail->reset();
407 $this->prefs = array();
408 $this->currentPrefKey = null;
409 $this->auth_mode_set =
false;
410 $this->approve_date_set =
false;
411 $this->time_limit_set =
false;
412 $this->time_limit_owner_set =
false;
413 $this->updateLookAndSkin =
false;
416 $this->personalPicture = null;
421 $this->udf_data = array();
426 if (is_numeric($a_attribs[
"Id"])) {
427 $this->user_id = $a_attribs[
"Id"];
429 $this->user_id =
$id;
433 $this->userObj->setPref(
435 $ilias->ini->readVariable(
"layout",
"skin")
437 $this->userObj->setPref(
439 $ilias->ini->readVariable(
"layout",
"style")
442 if (isset($a_attribs[
"Language"])) {
443 $this->containedTags[] =
"Language";
445 $this->userObj->setLanguage($a_attribs[
"Language"] ??
'');
446 $this->userObj->setImportId($a_attribs[
"Id"] ??
'');
447 $this->action = (is_null($a_attribs[
"Action"])) ?
"Insert" : $a_attribs[
"Action"];
448 $this->currPassword = null;
449 $this->currPasswordType = null;
450 $this->currActive = null;
451 $this->multi_values = array();
455 $this->currPasswordType = $a_attribs[
'Type'];
458 if (array_key_exists(
"type", $a_attribs)) {
459 switch ($a_attribs[
"type"]) {
462 if (strcmp(
'saml', $a_attribs[
'type']) === 0) {
464 if (count($list) === 1) {
465 $this->auth_mode_set =
true;
466 $idp = current($list);
467 $this->userObj->setAuthMode(
'saml_' . $idp->getIdpId());
471 if (strcmp(
'ldap', $a_attribs[
'type']) === 0) {
474 if (count($list) == 1) {
475 $this->auth_mode_set =
true;
476 $ldap_id = current($list);
477 $this->userObj->setAuthMode(
'ldap_' . $ldap_id);
491 $this->auth_mode_set =
true;
492 $this->userObj->setAuthMode($a_attribs[
"type"]);
497 $this->userObj->getLogin(),
498 sprintf(
$lng->
txt(
"usrimport_xml_element_inapplicable"),
"AuthMode", $this->
stripTags($a_attribs[
"type"]))
503 case 'UserDefinedField':
504 $this->tmp_udf_id = $a_attribs[
'Id'];
505 $this->tmp_udf_name = $a_attribs[
'Name'];
509 $this->current_messenger_type = strtolower($a_attribs[
"Type"]);
512 $this->userObj->setLatitude($a_attribs[
"latitude"]);
513 $this->userObj->setLongitude($a_attribs[
"longitude"]);
514 $this->userObj->setLocationZoom($a_attribs[
"zoom"]);
517 $this->currentPrefKey = $a_attribs[
"key"];
536 if ($a_attribs[
'Id'] ==
"") {
537 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_missing"),
"Role",
"Id"));
539 $this->current_role_id = $a_attribs[
"Id"];
540 $this->current_role_type = $a_attribs[
"Type"];
541 if ($this->current_role_type !==
'Global' 542 && $this->current_role_type !==
'Local') {
543 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_missing"),
"Role",
"Type"));
545 $this->current_role_action = (!isset($a_attribs[
"Action"])) ?
"Assign" : $a_attribs[
"Action"];
546 if ($this->current_role_action !==
"Assign" 547 && $this->current_role_action !==
"AssignWithParents" 548 && $this->current_role_action !==
"Detach") {
549 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"Role",
"Action", $this->
stripTags($a_attribs[
"Action"])));
551 if ($this->action ===
"Insert" 552 && $this->current_role_action ===
"Detach") {
553 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_inapplicable"),
"Role",
"Action", $this->
stripTags($this->current_role_action), $this->
stripTags($this->action)));
555 if ($this->action ===
"Delete") {
556 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_inapplicable"),
"Role",
"Delete"));
562 $this->containedTags = [];
564 $this->userObj->setLanguage($a_attribs[
"Language"] ??
'');
565 $this->userObj->setImportId($a_attribs[
"Id"] ??
'');
566 $this->currentPrefKey = null;
571 if (is_numeric($a_attribs[
"Id"])) {
572 $this->user_id = $a_attribs[
"Id"];
574 $this->user_id =
$id;
578 $this->action = (is_null($a_attribs[
"Action"])) ?
"Insert" : $a_attribs[
"Action"];
579 if ($this->action !==
"Insert" 580 && $this->action !==
"Update" 581 && $this->action !==
"Delete") {
582 $this->
logFailure($this->userObj->getImportId(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"User",
"Action", $this->
stripTags($a_attribs[
"Action"])));
584 $this->currPassword = null;
585 $this->currPasswordType = null;
589 $this->currPasswordType = $a_attribs[
'Type'];
592 if (array_key_exists(
"type", $a_attribs)) {
593 switch ($a_attribs[
"type"]) {
596 if (strcmp(
'saml', $a_attribs[
'type']) === 0) {
598 if (count($list) !== 1) {
600 $this->userObj->getImportId(),
601 sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"AuthMode",
"type", $this->
stripTags($a_attribs[
'type']))
606 if (strcmp(
'ldap', $a_attribs[
'type']) === 0) {
609 if (count($list) != 1) {
611 $this->userObj->getImportId(),
612 sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"AuthMode",
"type", $this->
stripTags($a_attribs[
'type']))
627 $this->userObj->setAuthMode($a_attribs[
"type"]);
631 $this->
logFailure($this->userObj->getImportId(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"AuthMode",
"type",
""));
635 $this->currentPrefKey = $a_attribs[
"key"];
645 switch ($this->mode) {
679 if (array_key_exists($a_role_id, $this->localRoleCache)) {
680 return $this->localRoleCache[$a_role_id];
682 $role_obj =
new ilObjRole($a_role_id,
false);
684 $this->localRoleCache[$a_role_id] = $role_obj;
696 $rbacreview = $DIC[
'rbacreview'];
698 if (array_key_exists($a_role_id .
'_courseMembersObject', $this->localRoleCache)) {
699 return $this->localRoleCache[$a_role_id .
'_courseMembersObject'];
701 $course_refs = $rbacreview->getFoldersAssignedToRole($a_role_id,
true);
702 $course_ref = $course_refs[0];
705 $this->localRoleCache[$a_role_id .
'_courseMembersObject'] = $crsmembers_obj;
706 return $crsmembers_obj;
717 $rbacreview = $DIC[
'rbacreview'];
718 $rbacadmin = $DIC[
'rbacadmin'];
724 if ($rbacreview->isAssigned($a_user_obj->
getId(), $a_role_id)) {
731 $rbacadmin->assignUser($a_role_id, $a_user_obj->
getId(),
true);
732 $obj_id = $rbacreview->getObjectOfRole($a_role_id);
737 $ref_id = current((array) $ref_ids);
758 $rbacreview = $DIC[
'rbacreview'];
760 if (!array_key_exists($a_role_id, $this->parentRolesCache)) {
761 $parent_role_ids = array();
764 $short_role_title = substr($role_obj->getTitle(), 0, 12);
765 $folders = $rbacreview->getFoldersAssignedToRole($a_role_id,
true);
766 if (count($folders) > 0) {
767 $all_parent_role_ids = $rbacreview->getParentRoleIds($folders[0]);
768 foreach ($all_parent_role_ids as $parent_role_id => $parent_role_data) {
769 if ($parent_role_id != $a_role_id) {
770 switch (substr($parent_role_data[
'title'], 0, 12)) {
773 if ($short_role_title ===
'il_crs_admin' || $short_role_title ===
'il_grp_admin') {
774 $parent_role_ids[] = $parent_role_id;
779 if ($short_role_title ===
'il_crs_tutor' || $short_role_title ===
'il_grp_tutor') {
780 $parent_role_ids[] = $parent_role_id;
785 if ($short_role_title ===
'il_crs_membe' || $short_role_title ===
'il_grp_membe') {
786 $parent_role_ids[] = $parent_role_id;
795 $this->parentRolesCache[$a_role_id] = $parent_role_ids;
797 return $this->parentRolesCache[$a_role_id];
810 foreach ($parent_role_ids as $parent_role_id) {
824 $rbacreview = $DIC[
'rbacreview'];
825 $rbacadmin = $DIC[
'rbacadmin'];
827 $rbacadmin->deassignUser($a_role_id, $a_user_obj->
getId());
831 $obj = $rbacreview->getObjectOfRole($a_role_id);
834 $this->recommended_content_manager->removeObjectRecommendation($a_user_obj->
getId(),
$ref_id);
840 return in_array($tagname, $this->containedTags,
true);
856 $this->containedTags[] = $a_name;
865 case "PersonalPicture":
866 switch ($this->personalPicture[
"encoding"]) {
868 $this->personalPicture[
"content"] = base64_decode($this->cdata);
871 $this->personalPicture[
"content"] = convert_uudecode($this->cdata);
877 $this->userObj->setFullname();
880 if ($this->user_id == -1 || $this->action ===
"Insert") {
891 switch ($this->conflict_rule) {
896 switch ($this->action) {
899 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_action_replaced"),
"Insert",
"Update"));
900 $this->action =
"Update";
905 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_action_replaced"),
"Update",
"Insert"));
906 $this->action =
"Insert";
911 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_action_ignored"),
"Delete"));
912 $this->action =
"Ignore";
918 switch ($this->action) {
921 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_action_ignored"),
"Insert"));
922 $this->action =
"Ignore";
927 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_action_ignored"),
"Update"));
928 $this->action =
"Ignore";
933 $this->
logWarning($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_action_ignored"),
"Delete"));
934 $this->action =
"Ignore";
945 $am = ($this->userObj->getAuthMode() ===
"default" || $this->userObj->getAuthMode() ==
"")
947 : $this->userObj->getAuthMode();
948 $loginForExternalAccount = ($this->userObj->getExternalAccount() ==
"")
951 switch ($this->action) {
953 if ($loginForExternalAccount !=
"") {
955 $this->userObj->getLogin(),
956 $lng->
txt(
'usrimport_no_insert_ext_account_exists')
957 .
' (' . $this->
stripTags($this->userObj->getExternalAccount()) .
')' 959 $this->action =
"Ignore";
968 if ($loginForExternalAccount !=
"") {
972 if ($externalAccountHasChanged && trim($loginForExternalAccount) != trim($this->userObj->getLogin())) {
974 $this->userObj->getLogin(),
975 $lng->
txt(
'usrimport_no_update_ext_account_exists')
976 .
' (' . $this->
stripTags($this->userObj->getExternalAccount()) .
')' 978 $this->action =
"Ignore";
984 if (count($this->multi_values)) {
985 if (isset($this->multi_values[
"GeneralInterest"])) {
986 $this->userObj->setGeneralInterests($this->multi_values[
"GeneralInterest"]);
988 if (isset($this->multi_values[
"OfferingHelp"])) {
989 $this->userObj->setOfferingHelp($this->multi_values[
"OfferingHelp"]);
991 if (isset($this->multi_values[
"LookingForHelp"])) {
992 $this->userObj->setLookingForHelp($this->multi_values[
"LookingForHelp"]);
997 switch ($this->action) {
1000 $this->
logFailure($this->userObj->getLogin(),
$lng->
txt(
"usrimport_cant_insert"));
1002 if (!strlen($this->currPassword) == 0) {
1003 switch (strtoupper($this->currPasswordType)) {
1006 $this->userObj->setPasswordEncodingType(
'bcryptphp');
1007 $this->userObj->setPasswordSalt(null);
1012 $this->acc_mail->setUserPassword((
string) $this->currPassword);
1016 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"Type",
"Password", $this->
stripTags($this->currPasswordType)));
1028 $this->userObj->setTitle($this->userObj->getFullname());
1029 $this->userObj->setDescription($this->userObj->getEmail());
1031 if (!$this->time_limit_owner_set) {
1032 $this->userObj->setTimeLimitOwner($this->
getFolderId());
1036 if (!$this->time_limit_set) {
1037 $this->userObj->setTimeLimitUnlimited(1);
1038 $this->userObj->setTimeLimitMessage(0);
1040 if (!$this->approve_date_set) {
1041 $this->userObj->setApproveDate(date(
"Y-m-d H:i:s"));
1046 $this->userObj->setActive($this->currActive ===
'true' || is_null($this->currActive));
1052 if (count($this->udf_data)) {
1053 $this->userObj->setUserDefinedData($this->udf_data);
1056 if (!$this->userObj->getLanguage()) {
1057 $this->userObj->setLanguage($this->
lng->getDefaultLanguage());
1061 $this->userObj->create();
1064 $this->userObj->saveAsNew();
1067 $this->userObj->setPref(
'hits_per_page',
$ilSetting->get(
'hits_per_page', 30));
1070 if (count($this->prefs)) {
1071 foreach ($this->prefs as
$key => $value) {
1072 if (
$key !==
"mail_incoming_type" &&
1073 $key !==
"mail_signature" &&
1074 $key !==
"mail_linebreak" 1076 $this->userObj->setPref(
$key, $value);
1081 if (!is_array($this->prefs) || !array_key_exists(
'chat_osc_accept_msg', $this->prefs)) {
1082 $this->userObj->setPref(
'chat_osc_accept_msg',
$ilSetting->get(
'chat_osc_accept_msg',
'n'));
1084 if (!is_array($this->prefs) || !array_key_exists(
'chat_broadcast_typing', $this->prefs)) {
1085 $this->userObj->setPref(
'chat_broadcast_typing',
$ilSetting->get(
'chat_broadcast_typing',
'n'));
1087 if (!is_array($this->prefs) || !array_key_exists(
'bs_allow_to_contact_me', $this->prefs)) {
1088 $this->userObj->setPref(
'bs_allow_to_contact_me',
$ilSetting->get(
'bs_allow_to_contact_me',
'n'));
1091 $this->userObj->writePrefs();
1096 if (is_array($this->personalPicture)) {
1097 if (strlen($this->personalPicture[
"content"])) {
1099 if (preg_match(
"/.*(png|jpg|gif|jpeg)$/", $this->personalPicture[
"imagetype"], $matches)) {
1100 $extension = $matches[1];
1102 $tmp_name = $this->
saveTempImage($this->personalPicture[
"content"],
".$extension");
1103 if (strlen($tmp_name)) {
1111 foreach ($this->roles as $role_id => $role) {
1112 if (isset($this->role_assign[$role_id]) && $this->role_assign[$role_id]) {
1113 $this->
assignToRole($this->userObj, $this->role_assign[$role_id]);
1117 if (count($this->udf_data)) {
1119 foreach ($this->udf_data as $field => $value) {
1120 $udd->
set(
"f_" . $field, $value);
1126 $this->
logSuccess($this->userObj->getLogin(), $this->userObj->getId(),
"Insert");
1128 $this->acc_mail->reset();
1134 $this->
logFailure($this->userObj->getLogin(),
$lng->
txt(
"usrimport_cant_update"));
1137 $updateUser->read();
1138 $updateUser->readPrefs();
1139 if ($this->currPassword != null) {
1140 switch (strtoupper($this->currPasswordType)) {
1143 $updateUser->setPasswordEncodingType(
'bcryptphp');
1144 $updateUser->setPasswordSalt(null);
1149 $this->acc_mail->setUserPassword((
string) $this->currPassword);
1153 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"Type",
"Password", $this->
stripTags($this->currPasswordType)));
1158 $updateUser->setFirstname($this->userObj->getFirstname());
1161 $updateUser->setLastname($this->userObj->getLastname());
1164 $updateUser->setUTitle($this->userObj->getUTitle());
1167 $updateUser->setGender($this->userObj->getGender());
1170 $updateUser->setEmail($this->userObj->getEmail());
1173 $updateUser->setSecondEmail($this->userObj->getSecondEmail());
1176 $updateUser->setBirthday($this->userObj->getBirthday());
1179 $updateUser->setInstitution($this->userObj->getInstitution());
1182 $updateUser->setStreet($this->userObj->getStreet());
1185 $updateUser->setCity($this->userObj->getCity());
1188 $updateUser->setZipcode($this->userObj->getZipcode());
1191 $updateUser->setCountry($this->userObj->getCountry());
1194 $updateUser->setSelectedCountry($this->userObj->getSelectedCountry());
1197 $updateUser->setPhoneOffice($this->userObj->getPhoneOffice());
1200 $updateUser->setPhoneHome($this->userObj->getPhoneHome());
1203 $updateUser->setPhoneMobile($this->userObj->getPhoneMobile());
1206 $updateUser->setFax($this->userObj->getFax());
1209 $updateUser->setHobby($this->userObj->getHobby());
1212 $updateUser->setGeneralInterests($this->userObj->getGeneralInterests());
1215 $updateUser->setOfferingHelp($this->userObj->getOfferingHelp());
1218 $updateUser->setLookingForHelp($this->userObj->getLookingForHelp());
1221 $updateUser->setComment($this->userObj->getComment());
1224 $updateUser->setDepartment($this->userObj->getDepartment());
1227 $updateUser->setMatriculation($this->userObj->getMatriculation());
1229 if (!is_null($this->currActive)) {
1230 $updateUser->setActive($this->currActive ===
"true", is_object(
$ilUser) ?
$ilUser->getId() : 0);
1233 $updateUser->setClientIP($this->userObj->getClientIP());
1235 if ($this->time_limit_set) {
1236 $updateUser->setTimeLimitUnlimited($this->userObj->getTimeLimitUnlimited());
1239 $updateUser->setTimeLimitFrom($this->userObj->getTimeLimitFrom());
1242 $updateUser->setTimeLimitUntil($this->userObj->getTimeLimitUntil());
1245 $updateUser->setTimeLimitMessage($this->userObj->getTimeLimitMessage());
1248 $updateUser->setApproveDate($this->userObj->getApproveDate());
1251 $updateUser->setAgreeDate($this->userObj->getAgreeDate());
1254 $updateUser->setLanguage($this->userObj->getLanguage());
1257 $updateUser->setExternalAccount($this->userObj->getExternalAccount());
1261 #if (! is_null($this->userObj->getAuthMode())) $updateUser->setAuthMode($this->userObj->getAuthMode()); 1262 if ($this->auth_mode_set) {
1263 $updateUser->setAuthMode($this->userObj->getAuthMode());
1267 if ($this->time_limit_owner_set) {
1268 $updateUser->setTimeLimitOwner($this->userObj->getTimeLimitOwner());
1271 if (count($this->prefs)) {
1272 foreach ($this->prefs as
$key => $value) {
1273 if (
$key !==
"mail_incoming_type" &&
1274 $key !==
"mail_signature" &&
1275 $key !==
"mail_linebreak" 1277 $updateUser->setPref(
$key, $value);
1283 if ($this->updateLookAndSkin) {
1284 $updateUser->setPref(
"skin", $this->userObj->getPref(
"skin"));
1285 $updateUser->setPref(
"style", $this->userObj->getPref(
"style"));
1289 $updateUser->writePrefs();
1295 if (count($this->udf_data)) {
1296 $updateUser->setUserDefinedData($this->udf_data);
1300 $updateUser->setFullname();
1301 $updateUser->setTitle($updateUser->getFullname());
1302 $updateUser->setDescription($updateUser->getEmail());
1303 $updateUser->update();
1305 if (count($this->udf_data)) {
1307 foreach ($this->udf_data as $field => $value) {
1308 $udd->
set(
"f_" . $field, $value);
1314 if ($this->
tagContained(
"Login") && $this->user_id != -1) {
1316 $updateUser->updateLogin($this->userObj->getLogin());
1324 if (is_array($this->personalPicture)) {
1325 if (strlen($this->personalPicture[
"content"])) {
1327 if (preg_match(
"/.*(png|jpg|gif|jpeg)$/", $this->personalPicture[
"imagetype"], $matches)) {
1328 $extension = $matches[1];
1330 $tmp_name = $this->
saveTempImage($this->personalPicture[
"content"],
".$extension");
1331 if (strlen($tmp_name)) {
1341 foreach ($this->roles as $role_id => $role) {
1342 if (array_key_exists($role_id, $this->role_assign)) {
1343 switch ($role[
"action"]) {
1345 $this->
assignToRole($updateUser, $this->role_assign[$role_id]);
1347 case "AssignWithParents":
1351 $this->
detachFromRole($updateUser, $this->role_assign[$role_id]);
1361 $this->
logFailure($this->userObj->getLogin(),
$lng->
txt(
"usrimport_cant_delete"));
1364 $deleteUser->delete();
1372 $this->roles = array();
1396 $this->userObj->setGender($this->cdata);
1407 if (strtotime($birthday) !==
false) {
1408 $this->userObj->setBirthday($birthday);
1455 case "GeneralInterest":
1456 case "OfferingHelp":
1457 case "LookingForHelp":
1469 case "Matriculation":
1481 case "TimeLimitOwner":
1482 $this->time_limit_owner_set =
true;
1483 $this->userObj->setTimeLimitOwner($this->cdata);
1486 case "TimeLimitUnlimited":
1487 $this->time_limit_set =
true;
1488 $this->userObj->setTimeLimitUnlimited($this->cdata);
1491 case "TimeLimitFrom":
1492 if (is_numeric($this->cdata)) {
1494 $this->userObj->setTimeLimitFrom($this->cdata);
1498 if (
$timestamp !==
false && trim($this->cdata) !==
"0000-00-00 00:00:00") {
1499 $this->userObj->setTimeLimitFrom(
$timestamp);
1500 } elseif ($this->cdata ===
"0000-00-00 00:00:00") {
1501 $this->userObj->setTimeLimitFrom(null);
1506 case "TimeLimitUntil":
1507 if (is_numeric($this->cdata)) {
1509 $this->userObj->setTimeLimitUntil($this->cdata);
1513 if (
$timestamp !==
false && trim($this->cdata) !==
"0000-00-00 00:00:00") {
1514 $this->userObj->setTimeLimitUntil(
$timestamp);
1515 } elseif ($this->cdata ===
"0000-00-00 00:00:00") {
1516 $this->userObj->setTimeLimitUntil(null);
1521 case "TimeLimitMessage":
1522 $this->userObj->setTimeLimitMessage($this->cdata);
1526 $this->approve_date_set =
true;
1527 if (is_numeric($this->cdata)) {
1534 if (
$timestamp !==
false && trim($this->cdata) !==
"0000-00-00 00:00:00") {
1537 } elseif ($this->cdata ===
"0000-00-00 00:00:00") {
1538 $this->userObj->setApproveDate(null);
1544 if (is_numeric($this->cdata)) {
1551 if (
$timestamp !==
false && trim($this->cdata) !==
"0000-00-00 00:00:00") {
1554 } elseif ($this->cdata ===
"0000-00-00 00:00:00") {
1555 $this->userObj->setAgreeDate(null);
1560 case "ExternalAccount":
1565 $this->updateLookAndSkin =
false;
1566 if ($this->skin !==
'' && $this->style !==
'') {
1567 if (is_array($this->userStyles)) {
1568 if (in_array($this->skin .
':' . $this->style, $this->userStyles)) {
1569 $this->userObj->setPref(
'skin', $this->skin);
1570 $this->userObj->setPref(
'style', $this->style);
1571 $this->updateLookAndSkin =
true;
1577 case 'UserDefinedField':
1580 $field_id = $udf->fetchFieldIdFromImportId($this->tmp_udf_id);
1582 if ($field_id === 0) {
1583 $field_id = $udf->fetchFieldIdFromName($this->tmp_udf_name);
1586 if ($field_id === 0) {
1594 if ($this->current_messenger_type ===
"external") {
1595 $this->userObj->setExternalAccount($this->cdata);
1599 if ($this->currentPrefKey != null && strlen(trim($this->cdata)) > 0
1603 $this->currentPrefKey = null;
1617 $fh = fopen($tempname,
"wb");
1621 fwrite($fh, $image_data);
1636 $ilAccess = $DIC[
'ilAccess'];
1638 $ilObjDataCache = $DIC[
'ilObjDataCache'];
1640 $externalAccountHasChanged =
false;
1650 $this->userObj->setFullname();
1651 if ($this->user_id != -1 && ($this->action ===
"Update" || $this->action ===
"Delete")) {
1656 $user_exists = $user_id != 0;
1658 if (is_null($this->userObj->getLogin())) {
1659 $this->
logFailure(
"---", sprintf(
$lng->
txt(
"usrimport_xml_element_for_action_required"),
"Login",
"Insert"));
1663 $this->
logWarning($this->userObj->getLogin(),
$lng->
txt(
'usrimport_xml_anonymous_or_root_not_allowed'));
1667 switch ($this->action) {
1670 $this->
logWarning($this->userObj->getLogin(),
$lng->
txt(
"usrimport_cant_insert"));
1672 if (is_null($this->userObj->getGender()) && $this->
isFieldRequired(
"gender")) {
1673 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_for_action_required"),
"Gender",
"Insert"));
1675 if (is_null($this->userObj->getFirstname())) {
1676 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_for_action_required"),
"Firstname",
"Insert"));
1678 if (is_null($this->userObj->getLastname())) {
1679 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_for_action_required"),
"Lastname",
"Insert"));
1681 if (count($this->roles) == 0) {
1682 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_for_action_required"),
"Role",
"Insert"));
1684 $has_global_role =
false;
1685 foreach ($this->roles as $role) {
1686 if ($role[
'type'] ===
'Global') {
1687 $has_global_role =
true;
1691 if (!$has_global_role) {
1692 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_global_role_for_action_required"),
"Insert"));
1697 if (!$user_exists) {
1698 $this->
logWarning($this->userObj->getLogin(),
$lng->
txt(
"usrimport_cant_update"));
1699 } elseif ($this->user_id != -1 && $this->
tagContained(
"Login")) {
1704 $this->
logFailure($this->userObj->getLogin(),
$lng->
txt(
"usrimport_login_is_not_unique"));
1709 if (!$user_exists) {
1710 $this->
logWarning($this->userObj->getLogin(),
$lng->
txt(
"usrimport_cant_delete"));
1716 $this->roles = array();
1720 if (array_key_exists($this->cdata, $this->logins)) {
1725 $this->userObj->setLogin($this->
stripTags($this->cdata));
1729 switch ($this->currPasswordType) {
1732 $this->userObj->setPasswordEncodingType(
'bcryptphp');
1733 $this->userObj->setPasswordSalt(null);
1738 $this->acc_mail->setUserPassword((
string) $this->currPassword);
1742 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_attribute_value_illegal"),
"Type",
"Password", $this->
stripTags($this->currPasswordType)));
1748 $this->userObj->setFirstname($this->cdata);
1752 $this->userObj->setLastname($this->cdata);
1756 $this->userObj->setUTitle($this->cdata);
1760 if (!in_array(strtolower($this->cdata), [
'n',
'm',
'f',
''])) {
1762 $this->userObj->getLogin(),
1763 sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"Gender", $this->
stripTags($this->cdata))
1766 $this->userObj->setGender($this->cdata);
1770 $this->userObj->setEmail($this->cdata);
1773 $this->userObj->setSecondEmail($this->cdata);
1776 $this->userObj->setInstitution($this->cdata);
1780 $this->userObj->setStreet($this->cdata);
1784 $this->userObj->setCity($this->cdata);
1788 $this->userObj->setZipcode($this->cdata);
1792 $this->userObj->setCountry($this->cdata);
1796 $this->userObj->setSelectedCountry($this->cdata);
1800 $this->userObj->setPhoneOffice($this->cdata);
1804 $this->userObj->setPhoneHome($this->cdata);
1808 $this->userObj->setPhoneMobile($this->cdata);
1812 $this->userObj->setFax($this->cdata);
1816 $this->userObj->setHobby($this->cdata);
1819 case "GeneralInterest":
1820 case "OfferingHelp":
1821 case "LookingForHelp":
1826 $this->userObj->setComment($this->cdata);
1830 $this->userObj->setDepartment($this->cdata);
1833 case "Matriculation":
1834 $this->userObj->setMatriculation($this->cdata);
1837 case "ExternalAccount":
1838 $am = ($this->userObj->getAuthMode() ===
"default" || $this->userObj->getAuthMode() ==
"")
1840 : $this->userObj->getAuthMode();
1841 $loginForExternalAccount = (trim($this->cdata) ==
"")
1844 switch ($this->action) {
1846 if ($loginForExternalAccount !=
"") {
1847 $this->
logWarning($this->userObj->getLogin(),
$lng->
txt(
"usrimport_no_insert_ext_account_exists") .
" (" . $this->
stripTags($this->cdata) .
")");
1852 if ($loginForExternalAccount !=
"") {
1854 if ($externalAccountHasChanged && trim($loginForExternalAccount) != trim($this->userObj->getLogin())) {
1856 $this->userObj->getLogin(),
1857 $lng->
txt(
"usrimport_no_update_ext_account_exists") .
" (" . $this->
stripTags($this->cdata) .
" for " . $this->
stripTags($loginForExternalAccount) .
")" 1864 if ($externalAccountHasChanged) {
1865 $this->userObj->setExternalAccount(trim($this->cdata));
1870 if ($this->cdata !==
"true" 1871 && $this->cdata !==
"false") {
1873 $this->userObj->getLogin(),
1874 sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"Active", $this->
stripTags($this->cdata))
1879 case "TimeLimitOwner":
1880 if (!preg_match(
"/\d+/", $this->cdata)) {
1882 $this->userObj->getLogin(),
1883 sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitOwner", $this->
stripTags($this->cdata))
1885 } elseif (!$ilAccess->checkAccess(
'cat_administrate_users',
'', $this->cdata)) {
1887 $this->userObj->getLogin(),
1888 sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitOwner", $this->
stripTags($this->cdata))
1890 } elseif ($ilObjDataCache->lookupType($ilObjDataCache->lookupObjId((
int) $this->cdata)) !==
'cat' && !(
int) $this->cdata ==
USER_FOLDER_ID) {
1892 $this->userObj->getLogin(),
1893 sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitOwner", $this->
stripTags($this->cdata))
1896 $this->userObj->setTimeLimitOwner($this->cdata);
1898 case "TimeLimitUnlimited":
1899 switch (strtolower($this->cdata)) {
1902 $this->userObj->setTimeLimitUnlimited(1);
1906 $this->userObj->setTimeLimitUnlimited(0);
1909 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitUnlimited", $this->
stripTags($this->cdata)));
1913 case "TimeLimitFrom":
1915 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata)) {
1916 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitFrom", $this->
stripTags($this->cdata)));
1918 $this->userObj->setTimeLimitFrom((
int) $this->cdata);
1920 case "TimeLimitUntil":
1922 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata)) {
1923 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitUntil", $this->
stripTags($this->cdata)));
1925 $this->userObj->setTimeLimitUntil((
int) $this->cdata);
1927 case "TimeLimitMessage":
1928 switch (strtolower($this->cdata)) {
1930 $this->userObj->setTimeLimitMessage(1);
1933 $this->userObj->setTimeLimitMessage(0);
1936 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"TimeLimitMessage", $this->
stripTags($this->cdata)));
1942 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata) && !$this->cdata ===
"0000-00-00 00:00:00") {
1943 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"ApproveDate", $this->
stripTags($this->cdata)));
1948 if (strtotime($this->cdata) ===
false && !is_numeric($this->cdata) && !$this->cdata ===
"0000-00-00 00:00:00") {
1949 $this->
logFailure($this->userObj->getLogin(), sprintf(
$lng->
txt(
"usrimport_xml_element_content_illegal"),
"AgreeDate", $this->
stripTags($this->cdata)));
1953 if ($this->currentPrefKey != null) {
1954 $this->
verifyPref($this->currentPrefKey, $this->cdata);
1967 if ($a_data !==
"\n") {
1968 $a_data = preg_replace(
"/\t+/",
" ", $a_data);
1971 if (strlen($a_data) > 0) {
1972 $this->cdata .= $a_data;
1996 if (!array_key_exists($aLogin, $this->protocol)) {
1997 $this->protocol[$aLogin] = array();
2000 $this->protocol[$aLogin][] = $aMessage;
2014 if (!array_key_exists($aLogin, $this->protocol)) {
2015 $this->protocol[$aLogin] = array();
2018 $this->protocol[$aLogin][] = $aMessage;
2031 $this->user_mapping[$userid] = array(
"login" => $aLogin,
"action" => $action,
"message" =>
"successful");
2056 $block =
new ilTemplate(
"tpl.usr_import_log_block.html",
true,
true,
"Services/User");
2057 $block->setVariable(
"TXT_LOG_TITLE", $a_log_title);
2058 $block->setVariable(
"TXT_MESSAGE_ID",
$lng->
txt(
"login"));
2059 $block->setVariable(
"TXT_MESSAGE_TEXT",
$lng->
txt(
"message"));
2061 $block->setCurrentBlock(
"log_row");
2070 $block->setVariable(
"MESSAGE_ID", $login);
2071 $block->setVariable(
"MESSAGE_TEXT",
$reason);
2072 $block->parseCurrentBlock();
2074 return $block->get();
2108 if ($this->req_send_mail !=
"" ||
2109 ($this->
isSendMail() && $this->userObj->getEmail() !=
"")) {
2110 $this->acc_mail->setUser($this->userObj);
2111 $this->acc_mail->send();
2117 $this->send_mail = $value;
2133 $this->mapping_mode = $value;
2135 die(
"wrong argument using methode setUserMappingMethod in " . __FILE__);
2157 if (is_array($this->required_fields)) {
2160 foreach (
$ilSetting->getAll() as $field => $value) {
2161 if (strpos($field,
'require_') === 0 && $value == 1) {
2162 $value = substr($field, 8);
2163 $this->required_fields[$value] = $value;
2166 return $this->required_fields ?: array();
2187 $fieldname = strtolower(trim($fieldname));
2188 return array_key_exists($fieldname, $requiredFields);
2194 case 'mail_linebreak':
2195 case 'hits_per_page':
2196 if (!is_numeric($value) || $value < 0) {
2197 $this->
logFailure(
"---",
"Wrong value '{$this->stripTags($value)}': Positiv numeric value expected for preference {$this->stripTags($key)}.");
2203 case 'ilPageEditor_HTMLMode':
2204 case 'ilPageEditor_JavaScript':
2205 case 'ilPageEditor_MediaMode':
2206 case 'tst_javascript':
2207 case 'tst_lastquestiontype':
2208 case 'tst_multiline_answers':
2209 case 'tst_use_previous_answers':
2210 case 'graphicalAnswerSetting':
2211 case 'priv_feed_pass':
2212 $this->
logFailure(
"---",
"Preference {$this->stripTags($key)} is not supported.");
2215 case 'public_country':
2216 case 'public_department':
2217 case 'public_email':
2218 case 'public_second_email':
2220 case 'public_hobby':
2221 case 'public_institution':
2222 case 'public_matriculation':
2223 case 'public_phone':
2224 case 'public_phone_home':
2225 case 'public_phone_mobile':
2226 case 'public_phone_office':
2227 case 'public_street':
2228 case 'public_upload':
2230 case 'public_interests_general':
2231 case 'public_interests_help_offered':
2232 case 'public_interests_help_looking':
2233 case 'send_info_mails':
2234 case 'bs_allow_to_contact_me':
2235 case 'chat_osc_accept_msg':
2236 case 'chat_broadcast_typing':
2237 case 'hide_own_online_status':
2238 if (!in_array($value, array(
'y',
'n'))) {
2239 $this->
logFailure(
"---",
"Wrong value '{$this->stripTags($value)}': Value 'y' or 'n' expected for preference {$this->stripTags($key)}.");
2242 case 'public_profile':
2243 if (!in_array($value, array(
'y',
'n',
'g'))) {
2244 $this->
logFailure(
"---",
"Wrong value '{$this->stripTags($value)}': Value 'y', 'g' or 'n' expected for preference {$this->stripTags($key)}.");
2247 case 'show_users_online':
2248 if (!in_array($value, array(
'y',
'n',
'associated'))) {
2249 $this->
logFailure(
"---",
"Wrong value '{$this->stripTags($value)}': Value 'y' or 'n' or 'associated' expected for preference {$this->stripTags($key)}.");
2252 case 'mail_incoming_type':
2253 if (!in_array((
int) $value, array(
"0",
"1",
"2"))) {
2254 $this->
logFailure(
"---",
"Wrong value '{$this->stripTags($value)}': Value \"0\" (LOCAL),\"1\" (EMAIL) or \"2\" (BOTH) expected for preference {$this->stripTags($key)}.");
2258 if (!in_array($value, array(
"0",
"1"))) {
2259 $this->
logFailure(
"---",
"Wrong value '{$this->stripTags($value)}': Value \"0\" (Sunday) or \"1\" (Monday) expected for preference {$this->stripTags($key)}.");
2263 case 'mail_signature':
2270 $this->
logFailure(
"---",
"Wrong value '{$this->stripTags($value)}': Invalid timezone $value detected for preference {$this->stripTags($key)}.");
2275 $this->
logFailure(
"---",
"Preference {$this->stripTags($key)} is not supported.");
2283 if (array_key_exists(
"mail_incoming_type", $this->prefs) ||
2284 array_key_exists(
"mail_signature", $this->prefs) ||
2285 array_key_exists(
"mail_linebreak", $this->prefs)
2289 $mailOptions->setLinebreak(array_key_exists(
"mail_linebreak", $this->prefs) ? $this->prefs[
"mail_linebreak"] : $mailOptions->getLinebreak());
2290 $mailOptions->setSignature(array_key_exists(
"mail_signature", $this->prefs) ? $this->prefs[
"mail_signature"] : $mailOptions->getSignature());
2291 $mailOptions->setIncomingType(array_key_exists(
"mail_incoming_type", $this->prefs) ? $this->prefs[
"mail_incoming_type"] : $mailOptions->getIncomingType());
2292 $mailOptions->updateOptions();
2303 return $this->
refinery->string()->stripTags()->transform($string);
bool $time_limit_owner_set
ilRecommendedContentManager $recommended_content_manager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilUserSettingsConfig $user_settings_config
Class ilMailOptions this class handles user mails.
static isProfileIncomplete(ilObjUser $a_user, bool $a_include_udf=true, bool $a_personal_data_only=true)
Check if all required personal data fields are set.
sendAccountMail()
send account mail
const IL_USER_MAPPING_LOGIN
extractRolesEndTag( $a_xml_parser, string $a_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupActivatedStyle(string $a_skin, string $a_style)
lookup if a style is activated
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...
saveTempImage(string $image_data, string $filename)
Saves binary image data to a temporary image file and returns the name of the image file on success...
getCourseMembersObjectForRole(int $a_role_id)
Returns the parent object of the role folder object which contains the specified role.
int $conflict_rule
Conflict handling rule.
static _getInstance(string $a_tz='')
get instance by timezone
assignToRoleWithParents(ilObjUser $a_user_obj, int $a_role_id)
Assigns a user to a role and to all parent roles.
handlerBeginTag( $a_xml_parser, string $a_name, array $a_attribs)
verifyBeginTag( $a_xml_parser, string $a_name, array $a_attribs)
stripTags(string $string)
importEndTag( $a_xml_parser, string $a_name)
getUserMappingMode()
read access to user mapping mode
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
static _getAllReferences(int $id)
get all reference ids for object ID
setRoleAssignment(array $a_assign)
set import to local role assignemt
isFieldRequired(string $fieldname)
determine if a field $fieldname is to a required field (global setting)
string $current_role_type
checkProfileIncomplete(ilObjUser $user_obj)
Check if profile is incomplete Will set the usr_data field profile_incomplete if any required field i...
setUserMappingMode(int $value)
write access to user mapping mode
handlerCharacterData( $a_xml_parser, string $a_data)
handler for character data
static _lookupId($a_user_str)
const IL_EXTRACT_ROLES
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
logWarning(string $aLogin, string $aMessage)
Writes a warning log message to the protocol.
const IL_FAIL_ON_CONFLICT
extractRolesBeginTag( $a_xml_parser, string $a_name, array $a_attribs)
isSuccess()
Returns true, if the import was successful.
array $userStyles
User assigned styles.
detachFromRole(ilObjUser $a_user_obj, int $a_role_id)
Detaches a user from a role.
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
static _getActiveServerList()
Get active server list.
static _lookupExternalAccount(int $a_user_id)
static _getAuthModeName($a_auth_key)
static _uploadPersonalPicture(string $tmp_file, int $obj_id)
Create a personal picture image file from a temporary image file.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(string $a_xml_file='', int $a_mode=IL_USER_IMPORT, int $a_conflict_rule=IL_FAIL_ON_CONFLICT)
static getUserIdByLogin(string $a_login)
$messages
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handlerEndTag( $a_xml_parser, string $a_name)
logSuccess(string $aLogin, string $userid, string $action)
Writes a success log message to the protocol.
static _lookupTitle(int $obj_id)
static _getInstanceByObjId(int $a_obj_id)
setHandlers($a_xml_parser)
set event handler should be overwritten by inherited class private
updateMailPreferences(int $usr_id)
getProtocol()
The protocol is an associative array.
array $logins
This variable is used to collect each login that we encounter in the import data. ...
Class for TimeZone exceptions.
array $localRoleCache
Cached local roles.
set(string $a_field, string $a_value)
string $current_messenger_type
verifyPref(string $key, string $value)
getUserMapping()
returns a map user_id <=> login
buildTag(string $type, string $name, array $attr=null)
generate a tag with given name and attributes
int $error_level
This variable is used to report the error level of the validation process or the importing process...
setFolderId(int $a_folder_id)
assign users to this folder (normally the usr_folder) But if called from local admin => the ref_id of...
logFailure(string $aLogin, string $aMessage)
Writes a failure log message to the protocol.
foreach($mandatory_scripts as $file) $timestamp
importBeginTag( $a_xml_parser, string $a_name, array $a_attribs)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
getProtocolAsHTML(string $a_log_title)
Returns the protocol as a HTML table.
getErrorLevel()
Returns the error level.
static isPrefExportable(string $key)
returns wether a key from db is exportable or not
array $personalPicture
Cached personal picture of the actual user This is used because the ilObjUser object has no field for...
static __extractId(string $ilias_id, int $inst_id)
extract ref id from role title, e.g.
__construct(Container $dic, ilPlugin $plugin)
array $protocol
The variable holds the protocol of the import.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParentRoleIds(int $a_role_id)
Get array of parent role ids from cache.
string $current_role_action
getRoleObject(int $a_role_id)
Returns the parent object of the role folder object which contains the specified role.
static getActiveIdpList()
verifyEndTag( $a_xml_parser, string $a_name)
handler for end of element when in verify mode.
static _lookupType(int $id, bool $reference=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
tagContained(string $tagname)
const IL_UPDATE_ON_CONFLICT
array $parentRolesCache
Cached parent roles.
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.
const IL_IGNORE_ON_CONFLICT
static _lookupLogin(int $a_user_id)
assignToRole(ilObjUser $a_user_obj, int $a_role_id)
Assigns a user to a role.