Lines Matching refs:updateUser

1205                             $updateUser = new ilObjUser($user_id);
1206 $updateUser->read();
1207 $updateUser->readPrefs();
1211 … $updateUser->setPasswd($this->currPassword, IL_PASSWD_CRYPTED);
1212 $updateUser->setPasswordEncodingType('bcryptphp');
1213 $updateUser->setPasswordSalt(null);
1217 … $updateUser->setPasswd($this->currPassword, IL_PASSWD_PLAIN);
1227 $updateUser->setFirstname($this->userObj->getFirstname());
1230 $updateUser->setLastname($this->userObj->getLastname());
1233 $updateUser->setUTitle($this->userObj->getUTitle());
1236 $updateUser->setGender($this->userObj->getGender());
1239 $updateUser->setEmail($this->userObj->getEmail());
1242 $updateUser->setSecondEmail($this->userObj->getSecondEmail());
1245 $updateUser->setBirthday($this->userObj->getBirthday());
1248 $updateUser->setInstitution($this->userObj->getInstitution());
1251 $updateUser->setStreet($this->userObj->getStreet());
1254 $updateUser->setCity($this->userObj->getCity());
1257 $updateUser->setZipCode($this->userObj->getZipCode());
1260 $updateUser->setCountry($this->userObj->getCountry());
1263 … $updateUser->setSelectedCountry($this->userObj->getSelectedCountry());
1266 $updateUser->setPhoneOffice($this->userObj->getPhoneOffice());
1269 $updateUser->setPhoneHome($this->userObj->getPhoneHome());
1272 $updateUser->setPhoneMobile($this->userObj->getPhoneMobile());
1275 $updateUser->setFax($this->userObj->getFax());
1278 $updateUser->setHobby($this->userObj->getHobby());
1281 … $updateUser->setGeneralInterests($this->userObj->getGeneralInterests());
1284 $updateUser->setOfferingHelp($this->userObj->getOfferingHelp());
1287 $updateUser->setLookingForHelp($this->userObj->getLookingForHelp());
1290 $updateUser->setComment($this->userObj->getComment());
1293 $updateUser->setDepartment($this->userObj->getDepartment());
1296 $updateUser->setMatriculation($this->userObj->getMatriculation());
1299 … $updateUser->setActive($this->currActive == "true", is_object($ilUser) ? $ilUser->getId() : 0);
1302 $updateUser->setClientIP($this->userObj->getClientIP());
1305 … $updateUser->setTimeLimitUnlimited($this->userObj->getTimeLimitUnlimited());
1308 $updateUser->setTimeLimitFrom($this->userObj->getTimeLimitFrom());
1311 $updateUser->setTimeLimitUntil($this->userObj->getTimeLimitUntil());
1314 … $updateUser->setTimeLimitMessage($this->userObj->getTimeLimitMessage());
1317 $updateUser->setApproveDate($this->userObj->getApproveDate());
1320 $updateUser->setAgreeDate($this->userObj->getAgreeDate());
1323 $updateUser->setLanguage($this->userObj->getLanguage());
1326 … $updateUser->setExternalAccount($this->userObj->getExternalAccount());
1332 $updateUser->setAuthMode($this->userObj->getAuthMode());
1337 $updateUser->setTimeLimitOwner($this->userObj->getTimeLimitOwner());
1347 $updateUser->setPref($key, $value);
1354 $updateUser->setPref("skin", $this->userObj->getPref("skin"));
1355 $updateUser->setPref("style", $this->userObj->getPref("style"));
1359 $updateUser->writePrefs();
1362 $this->updateMailPreferences($updateUser->getId());
1366 $updateUser->setUserDefinedData($this->udf_data);
1369 … $updateUser->setProfileIncomplete($this->checkProfileIncomplete($updateUser));
1370 $updateUser->setFullname();
1371 $updateUser->setTitle($updateUser->getFullname());
1372 $updateUser->setDescription($updateUser->getEmail());
1373 $updateUser->update();
1377 $udd = new ilUserDefinedData($updateUser->getId());
1387 $updateUser->updateLogin($this->userObj->getLogin());
1403 … ilObjUser::_uploadPersonalPicture($tmp_name, $updateUser->getId());
1416 … $this->assignToRole($updateUser, $this->role_assign[$role_id]);
1419 … $this->assignToRoleWithParents($updateUser, $this->role_assign[$role_id]);
1422 … $this->detachFromRole($updateUser, $this->role_assign[$role_id]);
1427 $this->logSuccess($updateUser->getLogin(), $user_id, "Update");