ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAccountRegistrationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
29  protected bool $code_enabled = false;
30  protected bool $code_was_used;
32 
34 
36 
39  protected ilLanguage $lng;
41  protected ?ilObjUser $userObj = null;
43  protected ilSetting $settings;
48 
50  protected \ILIAS\HTTP\Services $http;
51 
52  public function __construct()
53  {
54  global $DIC;
55 
56  $this->tpl = $DIC->ui()->mainTemplate();
57 
58  $this->ctrl = $DIC->ctrl();
59  $this->ctrl->saveParameter($this, 'lang');
60  $this->lng = $DIC->language();
61  $this->lng->loadLanguageModule('registration');
62  $this->error = $DIC['ilErr'];
63  $this->settings = $DIC->settings();
64  $this->globalUser = $DIC->user();
65  $this->rbacreview = $DIC->rbac()->review();
66  $this->rbacadmin = $DIC->rbac()->admin();
67  $this->ui_factory = $DIC->ui()->factory();
68  $this->ui_renderer = $DIC->ui()->renderer();
69 
70  $this->registration_settings = new ilRegistrationSettings();
71  $this->code_enabled = ($this->registration_settings->registrationCodeRequired() ||
72  $this->registration_settings->getAllowCodes());
73 
74  $this->recommended_content_manager = new ilRecommendedContentManager();
75 
76  $this->user_profile = new ilUserProfile();
77 
78  $this->http = $DIC->http();
79  $this->refinery = $DIC->refinery();
80  }
81 
82  public function executeCommand(): void
83  {
84  if ($this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_DISABLED) {
85  $this->error->raiseError($this->lng->txt('reg_disabled'), $this->error->FATAL);
86  }
87 
88  $cmd = $this->ctrl->getCmd();
89  switch ($cmd) {
90  case 'saveForm':
91  $tpl = $this->$cmd();
92  break;
93  default:
94  $tpl = $this->displayForm();
95  }
96 
97  $this->tpl->setPermanentLink('usr', null, 'registration');
99  }
100 
102  {
103  $tpl = ilStartUpGUI::initStartUpTemplate(['tpl.usr_registration.html', 'components/ILIAS/Registration'], true);
104  $tpl->setVariable('TXT_PAGEHEADLINE', $this->lng->txt('registration'));
105 
106  if (!$this->form) {
107  $this->initForm();
108  }
109  $tpl->setVariable('FORM', $this->form->getHTML());
110  return $tpl;
111  }
112 
113  protected function initForm(): void
114  {
115  $this->globalUser->setLanguage($this->lng->getLangKey());
116  $this->globalUser->setId(ANONYMOUS_USER_ID);
117 
118  // needed for multi-text-fields (interests)
120 
121  $this->form = new ilPropertyFormGUI();
122  $this->form->setFormAction($this->ctrl->getFormAction($this));
123 
124  // code handling
125  if ($this->code_enabled) {
126  $field = new ilFormSectionHeaderGUI();
127  $field->setTitle($this->lng->txt('registration_codes_type_reg'));
128  $this->form->addItem($field);
129  $code = new ilTextInputGUI($this->lng->txt("registration_code"), "usr_registration_code");
130  $code->setSize(40);
131  $code->setMaxLength(ilRegistrationCode::CODE_LENGTH);
132  if ($this->registration_settings->registrationCodeRequired()) {
133  $code->setRequired(true);
134  $code->setInfo($this->lng->txt("registration_code_required_info"));
135  } else {
136  $code->setInfo($this->lng->txt("registration_code_optional_info"));
137  }
138  $this->form->addItem($code);
139  }
140 
141  // user defined fields
142  $user_defined_data = $this->globalUser->getUserDefinedData();
143  $user_defined_fields = ilUserDefinedFields::_getInstance();
144  $custom_fields = [];
145 
146  foreach ($user_defined_fields->getRegistrationDefinitions() as $field_id => $definition) {
147  $fprop = ilCustomUserFieldsHelper::getInstance()->getFormPropertyForDefinition(
148  $definition,
149  true,
150  $user_defined_data['f_' . $field_id] ?? ''
151  );
152  if ($fprop instanceof ilFormPropertyGUI) {
153  $custom_fields['udf_' . $definition['field_id']] = $fprop;
154  }
155  }
156 
157  $this->user_profile->setMode(ilUserProfile::MODE_REGISTRATION);
158  $this->user_profile->skipGroup("preferences");
159 
160  $this->user_profile->setAjaxCallback(
161  $this->ctrl->getLinkTarget($this, 'doProfileAutoComplete', '', true)
162  );
163  $this->lng->loadLanguageModule("user");
164  // add fields to form
165  $this->user_profile->addStandardFieldsToForm($this->form, null, $custom_fields);
166  unset($custom_fields);
167 
168  // set language selection to current display language
169  $flang = $this->form->getItemByPostVar("usr_language");
170  if ($flang) {
171  $flang->setValue($this->lng->getLangKey());
172  }
173 
174  // add information to role selection (if not hidden)
175  if ($this->code_enabled) {
176  $role = $this->form->getItemByPostVar("usr_roles");
177  if ($role && $role->getType() === "select") {
178  $role->setInfo($this->lng->txt("registration_code_role_info"));
179  }
180  }
181 
182  // #11407
183  $domains = [];
184  foreach ($this->registration_settings->getAllowedDomains() as $item) {
185  if (trim($item)) {
186  $domains[] = $item;
187  }
188  }
189  if (count($domains)) {
190  $mail_obj = $this->form->getItemByPostVar('usr_email');
191  $mail_obj->setInfo(sprintf(
192  $this->lng->txt("reg_email_domains"),
193  implode(", ", $domains)
194  ) . "<br />" .
195  ($this->code_enabled ? $this->lng->txt("reg_email_domains_code") : ""));
196  }
197 
198  // #14272
199  if ($this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_ACTIVATION) {
200  $mail_obj = $this->form->getItemByPostVar('usr_email');
201  if ($mail_obj) { // #16087
202  $mail_obj->setRequired(true);
203  }
204  }
205 
206  global $DIC;
207  array_map($this->form->addItem(...), $DIC['legalDocuments']->selfRegistration()->legacyInputGUIs());
208 
209  $this->form->addCommandButton("saveForm", $this->lng->txt("register"));
210  }
211 
213  {
214  $this->initForm();
215  $form_valid = $this->form->checkInput();
216 
217  // custom validation
218  $valid_code = $valid_role = false;
219 
220  // code
221  if ($this->code_enabled) {
222  $code = $this->form->getInput('usr_registration_code');
223  // could be optional
224  if (
225  $code !== '' ||
226  $this->registration_settings->registrationCodeRequired()
227  ) {
228  // code validation
230  $code_obj = $this->form->getItemByPostVar('usr_registration_code');
231  $code_obj->setAlert($this->lng->txt('registration_code_not_valid'));
232  $form_valid = false;
233  } else {
234  $valid_code = true;
235 
236  // get role from code, check if (still) valid
237  $role_id = ilRegistrationCode::getCodeRole($code);
238  if ($role_id && $this->rbacreview->isGlobalRole($role_id)) {
239  $valid_role = $role_id;
240  }
241  }
242  }
243  }
244 
245  // valid codes override email domain check
246  if (!$valid_code) {
247  // validate email against restricted domains
248  $email = $this->form->getInput("usr_email");
249  if ($email) {
250  // #10366
251  $domains = [];
252  foreach ($this->registration_settings->getAllowedDomains() as $item) {
253  if (trim($item)) {
254  $domains[] = $item;
255  }
256  }
257  if (count($domains)) {
258  $mail_valid = false;
259  foreach ($domains as $domain) {
260  $domain = str_replace("*", "~~~", $domain);
261  $domain = preg_quote($domain, '/');
262  $domain = str_replace("~~~", ".+", $domain);
263  if (preg_match("/^" . $domain . "$/", $email, $hit)) {
264  $mail_valid = true;
265  break;
266  }
267  }
268  if (!$mail_valid) {
269  $mail_obj = $this->form->getItemByPostVar('usr_email');
270  $mail_obj->setAlert(sprintf(
271  $this->lng->txt("reg_email_domains"),
272  implode(", ", $domains)
273  ));
274  $form_valid = false;
275  }
276  }
277  }
278  }
279 
280  $error_lng_var = '';
281  if (
282  !$this->registration_settings->passwordGenerationEnabled() &&
284  $this->form->getInput('usr_password'),
285  $this->form->getInput('username'),
286  $error_lng_var
287  )
288  ) {
289  $passwd_obj = $this->form->getItemByPostVar('usr_password');
290  $passwd_obj->setAlert($this->lng->txt($error_lng_var));
291  $form_valid = false;
292  }
293 
294  global $DIC;
295  $form_valid = $DIC['legalDocuments']->selfRegistration()->saveLegacyForm($this->form) && $form_valid;
296 
297  // no need if role is attached to code
298  if (!$valid_role) {
299  // manual selection
300  if ($this->registration_settings->roleSelectionEnabled()) {
301  $selected_role = $this->form->getInput("usr_roles");
302  if ($selected_role && ilObjRole::_lookupAllowRegister((int) $selected_role)) {
303  $valid_role = (int) $selected_role;
304  }
305  } // assign by email
306  else {
307  $registration_role_assignments = new ilRegistrationRoleAssignments();
308  $valid_role = $registration_role_assignments->getRoleByEmail($this->form->getInput("usr_email"));
309  }
310  }
311 
312  // no valid role could be determined
313  if (!$valid_role && (!isset($selected_role) || $selected_role !== '')) {
314  $this->tpl->setOnScreenMessage('info', $this->lng->txt("registration_no_valid_role"));
315  $form_valid = false;
316  }
317 
318  // validate username
319  $login_obj = $this->form->getItemByPostVar('username');
320  $login = $this->form->getInput("username");
321  if (!ilUtil::isLogin($login)) {
322  $login_obj->setAlert($this->lng->txt("login_invalid"));
323  $form_valid = false;
324  }
325 
326  // We should use the HTTP request stretching mechanisms here, according to Mantis #32037
327  $username_checked_and_register_callback = function () use (&$form_valid, $login, $login_obj, $valid_role) {
328  if ($form_valid) {
329  if (ilObjUser::_loginExists($login)) {
330  $login_obj->setAlert($this->lng->txt('login_exists'));
331  $form_valid = false;
332  } elseif ((int) $this->settings->get('allow_change_loginname') &&
333  (int) $this->settings->get('reuse_of_loginnames') === 0 &&
335  $login_obj->setAlert($this->lng->txt('login_exists'));
336  $form_valid = false;
337  }
338  }
339 
340  if ($form_valid) {
341  $password = $this->createUser($valid_role);
342  $this->distributeMails($password);
343  }
344  };
345 
346  if (($register_duration = $this->settings->get('registration_duration')) !== null) {
347  $duration = $this->http->durations()->callbackDuration((int) $register_duration);
348  $duration->stretch($username_checked_and_register_callback);
349  } else {
350  $username_checked_and_register_callback();
351  }
352 
353  if ($form_valid) {
354  return $this->login();
355  }
356 
357  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('form_input_not_valid'));
358  $this->form->setValuesByPost();
359  return $this->displayForm();
360  }
361 
362  protected function createUser(int $a_role): string
363  {
364  // something went wrong with the form validation
365  if (!$a_role) {
366  global $DIC;
367 
368  $ilias = $DIC['ilias'];
369  $ilias->raiseError("Invalid role selection in registration" .
370  ", IP: " . $_SERVER["REMOTE_ADDR"], $ilias->error_obj->FATAL);
371  }
372 
373  $this->userObj = new ilObjUser();
374  if ((int) $this->settings->get('auth_mode') !== ilAuthUtils::AUTH_LOCAL) {
375  $this->userObj->setAuthMode('local');
376  }
377 
378  $this->user_profile->skipGroup("preferences");
379  $this->user_profile->skipGroup("settings");
380  $this->user_profile->skipField("password");
381  $this->user_profile->skipField("birthday");
382  $this->user_profile->skipField("upload");
383  foreach ($this->user_profile->getStandardFields() as $k => $v) {
384  if ($v["method"]) {
385  $method = "set" . substr($v["method"], 3);
386  if (method_exists($this->userObj, $method)) {
387  if ($k !== "username") {
388  $k = "usr_" . $k;
389  }
390  $field_obj = $this->form->getItemByPostVar($k);
391  if ($field_obj) {
392  $this->userObj->$method($this->form->getInput($k));
393  }
394  }
395  }
396  }
397 
398  $this->userObj->setFullName();
399 
400  $birthday_obj = $this->form->getItemByPostVar("usr_birthday");
401  if ($birthday_obj) {
402  $birthday = $this->form->getInput("usr_birthday");
403  $this->userObj->setBirthday($birthday);
404  }
405 
406  $this->userObj->setTitle($this->userObj->getFullname());
407  $this->userObj->setDescription($this->userObj->getEmail());
408 
409  if ($this->registration_settings->passwordGenerationEnabled()) {
411  $password = $password[0];
412  } else {
413  $password = $this->form->getInput("usr_password");
414  }
415  $this->userObj->setPasswd($password);
416 
417  // Set user defined data
418  $user_defined_fields = ilUserDefinedFields::_getInstance();
419  $defs = $user_defined_fields->getRegistrationDefinitions();
420  $udf = [];
421  foreach ($defs as $definition) {
422  $f = "udf_" . $definition['field_id'];
423  $item = $this->form->getItemByPostVar($f);
424  if ($item && !$item->getDisabled()) {
425  $udf[$definition['field_id']] = $this->form->getInput($f);
426  }
427  }
428  $this->userObj->setUserDefinedData($udf);
429 
430  $this->userObj->setTimeLimitOwner(7);
431 
432  $access_limit = null;
433 
434  $this->code_was_used = false;
435  $code_has_access_limit = false;
436  $code_local_roles = [];
437  if ($this->code_enabled) {
438  $code_local_roles = $code_has_access_limit = null;
439 
440  // #10853 - could be optional
441  $code = $this->form->getInput('usr_registration_code');
442  if ($code) {
443  // set code to used
445  $this->code_was_used = true;
446 
447  // handle code attached local role(s) and access limitation
448  $code_data = ilRegistrationCode::getCodeData($code);
449  if ($code_data["role_local"]) {
450  // need user id before we can assign role(s)
451  $code_local_roles = explode(";", $code_data["role_local"]);
452  }
453  if ($code_data["alimit"]) {
454  // see below
455  $code_has_access_limit = true;
456 
457  switch ($code_data["alimit"]) {
458  case "absolute":
459  $abs = date_parse($code_data["alimitdt"]);
460  $access_limit = mktime(23, 59, 59, $abs['month'], $abs['day'], $abs['year']);
461  break;
462 
463  case "relative":
464  $rel = unserialize($code_data["alimitdt"], ['allowed_classes' => false]);
465  $access_limit = (int) ($rel["d"] * 86400 + $rel["m"] * 2592000 + $rel["y"] * 31536000 + time());
466  break;
467  }
468  }
469  }
470  }
471 
472  // code access limitation will override any other access limitation setting
473  if (!($this->code_was_used && $code_has_access_limit) &&
474  $this->registration_settings->getAccessLimitation()) {
475  $access_limitations_obj = new ilRegistrationRoleAccessLimitations();
476  switch ($access_limitations_obj->getMode($a_role)) {
477  case 'absolute':
478  $access_limit = $access_limitations_obj->getAbsolute($a_role);
479  break;
480 
481  case 'relative':
482  $rel_d = $access_limitations_obj->getRelative($a_role, 'd');
483  $rel_m = $access_limitations_obj->getRelative($a_role, 'm');
484  $access_limit = $rel_d * 86400 + $rel_m * 2592000 + time();
485  break;
486  }
487  }
488 
489  if ($access_limit) {
490  $this->userObj->setTimeLimitUnlimited(false);
491  $this->userObj->setTimeLimitUntil($access_limit);
492  } else {
493  $this->userObj->setTimeLimitUnlimited(true);
494  $this->userObj->setTimeLimitUntil(time());
495  }
496 
497  $this->userObj->setTimeLimitFrom(time());
498 
500 
501  $this->userObj->create();
502 
503  if ($this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_DIRECT ||
504  $this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_CODES ||
506  $this->userObj->setActive(true, 0);
507  } elseif ($this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_ACTIVATION) {
508  $this->userObj->setActive(false, 0);
509  } else {
510  $this->userObj->setActive(false, 0);
511  }
512 
513  // set a timestamp for last_password_change
514  // this ts is needed by ilSecuritySettings
515  $this->userObj->setLastPasswordChangeTS(time());
516 
517  $this->userObj->setIsSelfRegistered(true);
518 
519  //insert user data in table user_data
520  $this->userObj->saveAsNew();
521 
522  // don't update owner before the first save. updateOwner rereads the object which fails if it not save before
523  $this->userObj->updateOwner();
524 
525  // setup user preferences
526  $this->userObj->setLanguage($this->form->getInput('usr_language'));
527 
528  global $DIC;
529  $DIC['legalDocuments']->selfRegistration()->userCreation($this->userObj);
530 
531  if ($this->http->wrapper()->query()->has('target')) {
532  $this->userObj->setPref(
533  'reg_target',
534  $this->http->wrapper()->query()->retrieve(
535  'target',
536  $this->refinery->kindlyTo()->string()
537  )
538  );
539  }
540  $this->userObj->setPref('bs_allow_to_contact_me', $this->settings->get('bs_allow_to_contact_me', 'n'));
541  $this->userObj->setPref('chat_osc_accept_msg', $this->settings->get('chat_osc_accept_msg', 'n'));
542  $this->userObj->setPref('chat_broadcast_typing', $this->settings->get('chat_broadcast_typing', 'n'));
543  $this->userObj->writePrefs();
544 
545  $this->rbacadmin->assignUser($a_role, $this->userObj->getId());
546 
547  // local roles from code
548  if ($this->code_was_used && is_array($code_local_roles)) {
549  $code_local_roles = array_map(intval(...), array_unique($code_local_roles));
550  foreach ($code_local_roles as $local_role_obj_id) {
551  // is given role (still) valid?
552  if (ilObject::_lookupType($local_role_obj_id) === "role") {
553  $this->rbacadmin->assignUser($local_role_obj_id, $this->userObj->getId());
554 
555  // patch to remove for 45 due to mantis 21953
556  $role_obj = $GLOBALS['DIC']['rbacreview']->getObjectOfRole($local_role_obj_id);
557  switch (ilObject::_lookupType($role_obj)) {
558  case 'crs':
559  case 'grp':
560  $role_refs = ilObject::_getAllReferences($role_obj);
561  $role_ref = end($role_refs);
562  // deactivated for now, see discussion at
563  // https://docu.ilias.de/goto_docu_wiki_wpage_5620_1357.html
564  // $this->recommended_content_manager->addObjectRecommendation($this->userObj->getId(), $role_ref);
565  break;
566  }
567  }
568  }
569  }
570 
571  return (string) $password;
572  }
573 
574  protected function distributeMails(string $password): void
575  {
576  // Send mail to approvers, if they are defined
577  if ($this->registration_settings->getApproveRecipients()) {
578  $mail = new ilRegistrationMailNotification();
579 
580  if (!$this->code_was_used &&
581  $this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_APPROVE) {
583  } else {
585  }
586  $mail->setRecipients($this->registration_settings->getApproveRecipients());
587  $mail->setAdditionalInformation(['usr' => $this->userObj]);
588  $mail->send();
589  }
590  // Send mail to new user
591  // Registration with confirmation link ist enabled
592  if (!$this->code_was_used &&
593  $this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_ACTIVATION) {
596  $mail->setRecipients([$this->userObj]);
597  $mail->setAdditionalInformation(
598  [
599  'usr' => $this->userObj,
600  'hash_lifetime' => $this->registration_settings->getRegistrationHashLifetime()
601  ]
602  );
603  $mail->send();
604  } else {
605  $accountMail = new ilAccountRegistrationMail(
606  $this->registration_settings,
607  $this->lng,
609  );
610  $accountMail->withDirectRegistrationMode()->send($this->userObj, $password, $this->code_was_used);
611  }
612  }
613 
614  public function login(): ilGlobalTemplateInterface
615  {
616  $tpl = ilStartUpGUI::initStartUpTemplate(['tpl.usr_registered.html', 'components/ILIAS/Registration'], false);
617  $this->tpl->setVariable('TXT_PAGEHEADLINE', $this->lng->txt('registration'));
618 
619  $tpl->setVariable("TXT_WELCOME", $this->lng->txt("welcome") . ", " . $this->userObj->getTitle() . "!");
620  if (
621  (
622  $this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_DIRECT ||
623  $this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_CODES ||
625  ) &&
626  !$this->registration_settings->passwordGenerationEnabled()
627  ) {
628  $tpl->setVariable('TXT_REGISTERED', $this->lng->txt('txt_registered'));
629 
630  $login_link = $this->ui_renderer->render(
631  $this->ui_factory->link()->standard(
632  $this->lng->txt('login_to_ilias'),
633  './login.php?cmd=force_login&lang=' . $this->userObj->getLanguage()
634  )
635  );
636  $tpl->setVariable('LOGIN_LINK', $login_link);
637  } elseif ($this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_APPROVE) {
638  $tpl->setVariable('TXT_REGISTERED', $this->lng->txt('txt_submitted'));
639  } elseif ($this->registration_settings->getRegistrationType() === ilRegistrationSettings::IL_REG_ACTIVATION) {
640  $tpl->setVariable('TXT_REGISTERED', $this->lng->txt('reg_confirmation_link_successful'));
641  } else {
642  $tpl->setVariable('TXT_REGISTERED', $this->lng->txt('txt_registered_passw_gen'));
643  }
644  return $tpl;
645  }
646 
647  protected function doProfileAutoComplete(): void
648  {
649  $field_id = (string) $_REQUEST["f"];
650  $term = (string) $_REQUEST["term"];
651 
652  $result = ilPublicUserProfileGUI::getAutocompleteResult($field_id, $term);
653  if (count($result)) {
654  echo json_encode($result, JSON_THROW_ON_ERROR);
655  }
656 
657  exit();
658  }
659 }
static getCodeRole(string $code)
static initStartUpTemplate( $a_tmpl, bool $a_show_back=false, bool $a_show_logout=false)
This method enriches the global template with some user interface elements (language selection...
Class for mime mail registration notifications.
const ANONYMOUS_USER_ID
Definition: constants.php:27
static getLogger(string $a_component_id)
Get component logger.
Class ilAccountRegistrationGUI.
static getAutocompleteResult(string $a_field_id, string $a_term)
static _getAllReferences(int $id)
get all reference ids for object ID
Class ilUserProfile.
Class class.ilregistrationEmailRoleAssignments.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
$duration
static printToGlobalTemplate($tpl)
static getCodeData(string $code)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
Class ilAccountRegistrationMail.
$GLOBALS["DIC"]
Definition: wac.php:53
ilRecommendedContentManager $recommended_content_manager
static isValidRegistrationCode(string $a_code)
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
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 initjQuery(?ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
static isLogin(string $a_login)
static isPasswordValidForUserContext(string $clear_text_password, $user, ?string &$error_language_variable=null)
global $DIC
Definition: shib_login.php:22
Class class.ilRegistrationAccessLimitation.
static generatePasswords(int $a_number)
Generate a number of passwords.
static _doesLoginnameExistInHistory(string $a_login)
Checks whether the passed loginname already exists in history.
Class ilObjAuthSettingsGUI.
form( $class_path, string $cmd, string $submit_caption="")
static useCode(string $code)
ilRegistrationSettings $registration_settings
Class ilRbacAdmin Core functions for role based access control.
static _lookupType(int $id, bool $reference=false)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupAllowRegister(int $a_role_id)
check whether role is allowed in user registration or not
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...