19 declare(strict_types=1);
47 protected \ILIAS\HTTP\Services
$http;
60 $this->tpl = $DIC->ui()->mainTemplate();
61 $this->
ctrl = $DIC->ctrl();
62 $this->
access = $DIC->access();
63 $this->rbacsystem = $DIC->rbac()->system();
64 $this->rbacreview = $DIC->rbac()->review();
65 $this->error = $DIC[
'ilErr'];
66 $this->
tabs = $DIC->tabs();
67 $this->
toolbar = $DIC->toolbar();
69 $this->
lng = $DIC->language();
70 $this->
lng->loadLanguageModule(
'administration');
71 $this->
lng->loadLanguageModule(
'registration');
72 $this->
lng->loadLanguageModule(
'user');
75 $this->
http = $DIC->http();
82 if ($this->
http->wrapper()->query()->has(
'ref_id')) {
83 return $this->
http->wrapper()->query()->retrieve(
93 $next_class = $this->
ctrl->getNextClass($this);
94 $cmd = $this->
ctrl->getCmd();
95 switch ($next_class) {
108 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->WARNING);
114 return $this->
access->checkAccess($a_permission,
'', $this->ref_id);
117 public function setSubTabs(
string $activeTab =
'registration_settings'): void
119 $this->
tabs->addSubTab(
120 "registration_settings",
121 $this->
lng->txt(
"registration_tab_settings"),
122 $this->
ctrl->getLinkTarget($this,
'view')
124 $this->
tabs->addSubTab(
125 "registration_codes",
126 $this->
lng->txt(
"registration_tab_codes"),
127 $this->
ctrl->getLinkTarget($this,
'listCodes')
129 $this->
tabs->activateSubTab($activeTab);
136 $form_gui->
setTitle($this->
lng->txt(
'reg_settings_header'));
140 $this->
lng->txt(
'reg_disabled'),
144 $option->setInfo($this->
lng->txt(
'reg_direct_info'));
146 $this->
lng->txt(
'reg_allow_codes'),
149 $cd->setInfo($this->
lng->txt(
'reg_allow_codes_info'));
150 $option->addSubItem($cd);
151 $reg_type->addOption($option);
153 $option->setInfo($this->
lng->txt(
'reg_approve_info'));
155 $this->
lng->txt(
'reg_allow_codes'),
158 $cd->setInfo($this->
lng->txt(
'reg_allow_codes_info'));
159 $option->addSubItem($cd);
160 $reg_type->addOption($option);
162 $this->
lng->txt(
'reg_type_confirmation'),
165 $option->setInfo($this->
lng->txt(
'reg_type_confirmation_info'));
166 $lt =
new ilNumberInputGUI($this->
lng->txt(
'reg_confirmation_hash_life_time'),
'reg_hash_life_time');
168 $lt->setMaxLength(6);
170 $lt->setRequired(
true);
171 $lt->setInfo($this->
lng->txt(
'reg_confirmation_hash_life_time_info'));
172 $lt->setSuffix($this->
lng->txt(
'seconds'));
173 $option->addSubItem($lt);
175 $this->
lng->txt(
'reg_allow_codes'),
178 $cd->setInfo($this->
lng->txt(
'reg_allow_codes_info'));
179 $option->addSubItem($cd);
180 $reg_type->addOption($option);
182 $this->
lng->txt(
'registration_reg_type_codes'),
185 $option->setInfo($this->
lng->txt(
'registration_reg_type_codes_info'));
186 $reg_type->addOption($option);
190 $pwd_gen->setValue(
'1');
191 $pwd_gen->setInfo($this->
lng->txt(
'reg_info_pwd'));
194 $approver =
new ilTextInputGUI($this->
lng->txt(
'reg_notification'),
'reg_approver');
195 $approver->setSize(32);
196 $approver->setMaxLength(50);
197 $approver->setInfo($this->
lng->txt(
'reg_notification_info'));
203 $edit = $this->
ctrl->getLinkTarget($this,
'editRoles');
206 $roles->addOption($option);
209 $edit = $this->
ctrl->getLinkTarget($this,
'editEmailAssignments');
212 $roles->addOption($option);
213 $roles->setInfo($this->
lng->txt(
'registration_codes_override_global_info'));
217 $limit->setValue(
'1');
219 $edit = $this->
ctrl->getLinkTarget($this,
'editRoleAccessLimitations');
221 $list->setInfo($this->
lng->txt(
'registration_codes_override_global_info'));
222 $limit->addSubItem($list);
225 $domains =
new ilTextInputGUI($this->
lng->txt(
'reg_allowed_domains'),
'reg_allowed_domains');
226 $domains->setInfo($this->
lng->txt(
'reg_allowed_domains_info'));
229 if ($this->rbacsystem->checkAccess(
"write", $this->ref_id)) {
238 if ($this->registration_settings->roleSelectionEnabled()) {
240 } elseif ($this->registration_settings->automaticRoleAssignmentEnabled()) {
246 'reg_type' => $this->registration_settings->getRegistrationType(),
247 'reg_hash_life_time' => $this->registration_settings->getRegistrationHashLifetime(),
248 'reg_pwd' => $this->registration_settings->passwordGenerationEnabled(),
249 'reg_approver' => $this->registration_settings->getApproveRecipientLogins(),
250 'reg_role_type' => $role_type,
251 'reg_access_limitation' => $this->registration_settings->getAccessLimitation(),
252 'reg_allowed_domains' => implode(
';', $this->registration_settings->getAllowedDomains())
255 $allow_codes = $this->registration_settings->getAllowCodes();
256 $reg_type = $this->registration_settings->getRegistrationType();
257 if ($allow_codes && in_array($reg_type, [
262 $values[
'reg_codes_' . $reg_type] =
true;
277 $this->
lng->txt(
'registration_user_new_account_mail'),
278 $this->
ctrl->getLinkTargetByClass(
280 ilAdministrationGUI::class,
281 ilObjUserFolderGUI::class
286 $this->
ctrl->setParameterByClass(ilObjUserFolderGUI::class,
'ref_id',
$_GET[
'ref_id']);
291 $this->tpl->setContent($form->getHTML());
299 $res = $form->checkInput();
300 $this->registration_settings->setRegistrationType((
int) $form->getInput(
'reg_type'));
301 $this->registration_settings->setPasswordGenerationStatus((
bool) $form->getInput(
'reg_pwd'));
302 $this->registration_settings->setApproveRecipientLogins($form->getInput(
'reg_approver'));
303 $this->registration_settings->setRoleType((
int) $form->getInput(
'reg_role_type'));
304 $this->registration_settings->setAccessLimitation((
bool) $form->getInput(
'reg_access_limitation'));
305 $this->registration_settings->setAllowedDomains((
string) $form->getInput(
'reg_allowed_domains'));
307 $allow_codes =
false;
308 $reg_type = (
int) $form->getInput(
'reg_type');
309 if (in_array($reg_type, [
314 $allow_codes = (bool) $form->getInput(
'reg_codes_' . $reg_type);
316 $this->registration_settings->setAllowCodes($allow_codes);
318 $hash_life_time = $form->getInput(
'reg_hash_life_time');
319 if (!preg_match(
'/^([0]|([1-9][0-9]*))([\.,][0-9]+)?$/', (
string) $hash_life_time)) {
322 $this->registration_settings->setRegistrationHashLifetime(max(
323 (
int) $hash_life_time,
328 if ($error_code = $this->registration_settings->validate()) {
329 switch ($error_code) {
331 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'reg_unknown_recipients') .
' ' . $this->registration_settings->getUnknown());
336 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'reg_approve_needs_recipient') .
' ' . $this->registration_settings->getUnknown());
342 $this->registration_settings->save();
343 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
351 $role_form->setFormAction($this->
ctrl->getFormAction($this,
'save'));
352 $role_form->setTitle($this->
lng->txt(
'reg_selectable_roles'));
356 foreach ($this->rbacreview->getGlobalRoles() as $role) {
361 $role_option->setValue((
string) $role);
362 $roles->addOption($role_option);
366 $roles->setUseValuesAsKeys(
true);
367 $roles->setValue($allowed_roles);
368 $role_form->addItem($roles);
371 $role_form->addCommandButton(
"updateRoles", $this->
lng->txt(
"save"));
373 $role_form->addCommandButton(
"view", $this->
lng->txt(
"cancel"));
380 $this->
tabs->clearTargets();
381 $this->
tabs->setBackTarget(
382 $this->
lng->txt(
"registration_settings"),
383 $this->
ctrl->getLinkTarget($this,
"view")
388 $this->tpl->setContent($form->getHTML());
395 if ($form->checkInput()) {
396 $roles = (array) $form->getInput(
'roles');
397 if (count($roles) < 1) {
398 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_last_role_for_registration'));
402 foreach ($this->rbacreview->getGlobalRoles() as $role) {
404 $role_obj->setAllowRegister(isset($roles[$role]) && (
int) $roles[$role] === 1);
409 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
417 $this->
tabs->clearTargets();
418 $this->
tabs->setBackTarget(
419 $this->
lng->txt(
"registration_settings"),
420 $this->
ctrl->getLinkTarget($this,
"view")
425 $this->tpl->setContent($form->getHTML());
431 $role_assignment_form->setFormAction($this->
ctrl->getFormAction($this));
432 $role_assignment_form->setTitle($this->
lng->txt(
'reg_email_role_assignment'));
434 $global_roles = [
"" => $this->
lng->txt(
"links_select_one")];
435 foreach ($this->rbacreview->getGlobalRoles() as $role_id) {
443 $domains = $this->assignments_obj->getDomainsByRole($role_id);
446 $domain->setMulti(
true);
447 $domain->setValidationRegexp(
"/^@.*\.[a-zA-Z]{1,4}$/");
448 if (!empty($domains)) {
449 $domain->setValue($domains[0]);
450 $domain->setMultiValues($domains);
451 $role_assignments->setChecked(
true);
454 $role_assignments->addSubItem($domain);
455 $role_assignment_form->addItem($role_assignments);
460 $default_role->setOptions($global_roles);
461 $default_role->setValue($this->assignments_obj->getDefaultRole());
462 $default_role->setRequired(
true);
463 $role_assignment_form->addItem($default_role);
465 $role_assignment_form->addCommandButton(
"saveAssignment", $this->
lng->txt(
"save"));
466 $role_assignment_form->addCommandButton(
"view", $this->
lng->txt(
"cancel"));
468 return $role_assignment_form;
476 $this->
tabs->clearTargets();
477 $this->
tabs->setBackTarget(
478 $this->
lng->txt(
"registration_settings"),
479 $this->
ctrl->getLinkTarget($this,
"view")
482 if (
null === $form) {
485 $this->tpl->setContent($form->getHTML());
491 $form->setFormAction($this->
ctrl->getFormAction($this));
492 $form->setTitle($this->
lng->txt(
'reg_role_access_limitations'));
496 $op_unlimited =
new ilRadioOption($this->
lng->txt(
'reg_access_limitation_mode_unlimited'),
"unlimited");
498 $op_absolute =
new ilRadioOption($this->
lng->txt(
'reg_access_limitation_mode_absolute'),
"absolute");
500 date(
"d.m.Y", $this->access_limitations_obj->getAbsolute($role[
'id'])),
504 $date->setDate($absolute_date);
507 $op_relative =
new ilRadioOption($this->
lng->txt(
'reg_access_limitation_mode_relative'),
"relative");
509 $duration->setShowMinutes(
false);
510 $duration->setShowHours(
false);
511 $duration->setShowDays(
true);
512 $duration->setShowMonths(
true);
513 $duration->setDays($this->access_limitations_obj->getRelative($role[
'id'],
'd'));
514 $duration->setMonths($this->access_limitations_obj->getRelative($role[
'id'],
'm'));
517 $role_access->addOption($op_unlimited);
518 $role_access->addOption($op_absolute);
519 $role_access->addOption($op_relative);
520 $role_access->setValue(
521 $this->access_limitations_obj->getMode(
523 ) ===
'null' ?
'unlimited' : $this->access_limitations_obj->getMode($role[
'id'])
526 $form->addItem($role_access);
529 $form->addCommandButton(
"saveRoleAccessLimitations", $this->
lng->txt(
"save"));
530 $form->addCommandButton(
"view", $this->
lng->txt(
"cancel"));
540 $is_valid = $form->checkInput();
541 $form->setValuesByPost();
547 $assignments_by_domain = [];
548 $problems_domains_by_field_id = [];
549 foreach ($this->rbacreview->getGlobalRoles() as $role_id) {
554 $role_assigned_input = $form->getInput(
"role_assigned_$role_id");
555 if (!$role_assigned_input) {
559 $domain_input = $form->getInput(
"domain_$role_id");
560 foreach ($domain_input as $domain) {
561 if (!is_string($domain) || $domain ===
'') {
565 if (isset($assignments_by_domain[$domain])) {
566 if (!isset($problems_domains_by_field_id[
"role_assigned_$role_id"])) {
567 $problems_domains_by_field_id[
"role_assigned_$role_id"] = [];
570 $problems_domains_by_field_id[
"domain_$role_id"][$domain] = $domain;
574 $assignments_by_domain[$domain] = $role_id;
578 if ($problems_domains_by_field_id !== []) {
579 foreach ($problems_domains_by_field_id as $field_id => $domains) {
580 $domain_string = implode(
', ', $domains);
581 $alert = sprintf($this->
lng->txt(
'reg_domain_already_assigned_p'), $domain_string);
582 if (count($domains) === 1) {
583 $alert = sprintf($this->
lng->txt(
'reg_domain_already_assigned_s'), $domain_string);
585 $form->getItemByPostVar($field_id)->setAlert($alert);
588 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
593 $this->assignments_obj->deleteAll();
596 foreach ($assignments_by_domain as $domain => $role_id) {
597 $this->assignments_obj->setDomain($counter, $domain);
598 $this->assignments_obj->setRole($counter, $role_id);
601 $default_role = $form->getInput(
"default_role");
602 $this->assignments_obj->setDefaultRole((
int) $default_role);
603 $this->assignments_obj->save();
604 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'));
615 if (!$form->checkInput()) {
616 $form->setValuesByPost();
621 $this->access_limitations_obj->resetAccessLimitations();
623 $mode = $form->getInput(
'role_access_' . $role[
'id']);
624 $this->access_limitations_obj->setMode($mode, $role[
'id']);
626 if ($mode ===
'absolute') {
627 $this->access_limitations_obj->setAbsolute($form->getInput(
'absolute_date_' . $role[
'id']), $role[
'id']);
630 if ($mode ===
'relative') {
631 $this->access_limitations_obj->setRelative($form->getInput(
'duration_' . $role[
'id']), $role[
'id']);
635 if ($err = $this->access_limitations_obj->validate()) {
638 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'reg_access_limitation_missing_mode'));
642 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'reg_access_limitation_out_of_date'));
649 $this->access_limitations_obj->save();
650 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'));
662 $tpl =
new ilTemplate(
'tpl.registration_roles.html',
true,
true,
'components/ILIAS/Registration');
667 if (is_array($roles) && count($roles)) {
668 foreach ($roles as $role) {
686 $all[] = $role[
'title'];
699 foreach ($this->assignments_obj->getAssignments() as $assignment) {
700 if ($assignment[
'domain'] !==
'' && $assignment[
'role']) {
705 if ((
string) $this->assignments_obj->getDefaultRole() !==
'') {
717 switch ($this->access_limitations_obj->getMode((
int) $role[
'id'])) {
719 $txt_access_value = $this->
lng->txt(
'reg_access_limitation_limited_until');
726 $months = $this->access_limitations_obj->getRelative($role[
'id'],
'm');
727 $days = $this->access_limitations_obj->getRelative($role[
'id'],
'd');
729 $txt_access_value = $this->
lng->txt(
'reg_access_limitation_limited_time') .
" ";
733 $txt_access_value .=
", ";
735 $txt_access_value .=
" " . $this->
lng->txt(
'and') .
" ";
738 $txt_access_value .=
" " . $this->
lng->txt(
'and') .
" ";
742 $txt_access_value .= $months .
" ";
743 $txt_access_value .= ($months === 1) ? $this->
lng->txt(
'month') : $this->
lng->txt(
'months');
746 $txt_access_value .=
" " . $this->
lng->txt(
'and') .
" ";
751 $txt_access_value .= $days .
" ";
752 $txt_access_value .= ($days === 1) ? $this->
lng->txt(
'day') : $this->
lng->txt(
'days');
757 $txt_access_value = $this->
lng->txt(
'reg_access_limitation_none');
761 $all[] = $role[
'title'] .
' (' . $txt_access_value .
')';
770 $this->assignments_obj =
new ilRegistrationRoleAssignments();
777 $this->access_limitations_obj =
new ilRegistrationRoleAccessLimitations();
787 $this->
lng->txt(
"registration_codes_add"),
788 $this->
ctrl->getLinkTarget($this,
"addCodes")
792 $this->tpl->setContent($ctab->getHTML());
798 $this->form_gui->setFormAction($this->
ctrl->getFormAction($this,
'createCodes'));
799 $this->form_gui->setTitle($this->
lng->txt(
'registration_codes_edit_header'));
801 $count =
new ilNumberInputGUI($this->
lng->txt(
'registration_codes_number'),
'reg_codes_number');
803 $count->setMaxLength(4);
804 $count->setMinValue(1);
805 $count->setMaxValue(1000);
806 $count->setRequired(
true);
807 $this->form_gui->addItem($count);
813 $code_type->addOption(
815 $this->
lng->txt(
'registration_codes_type_reg'),
816 (string) self::CODE_TYPE_REGISTRATION,
817 $this->
lng->txt(
'registration_codes_type_reg_info')
820 $code_type->addOption(
822 $this->
lng->txt(
'registration_codes_type_ext'),
823 (string) self::CODE_TYPE_EXTENSION,
824 $this->
lng->txt(
'registration_codes_type_ext_info')
827 $this->form_gui->addItem($code_type);
830 $sec->setTitle($this->
lng->txt(
'registration_codes_roles_title'));
831 $this->form_gui->addItem($sec);
833 $options = [
"" => $this->
lng->txt(
'registration_codes_no_assigned_role')];
834 foreach ($this->rbacreview->getGlobalRoles() as $role_id) {
839 $roles =
new ilSelectInputGUI($this->
lng->txt(
"registration_codes_roles"),
"reg_codes_role");
840 $roles->
setInfo($this->
lng->txt(
"registration_codes_override_info"));
841 $roles->setOptions($options);
842 $this->form_gui->addItem($roles);
844 $local =
new ilTextInputGUI($this->
lng->txt(
"registration_codes_roles_local"),
"reg_codes_local");
845 $local->setMulti(
true);
846 $local->setDataSource($this->
ctrl->getLinkTarget($this,
"getLocalRoleAutoComplete",
"",
true));
847 $this->form_gui->addItem($local);
850 $sec->setTitle($this->
lng->txt(
'reg_access_limitations'));
851 $this->form_gui->addItem($sec);
854 $limit->
setInfo($this->
lng->txt(
"registration_codes_override_info"));
855 $this->form_gui->addItem($limit);
857 $opt =
new ilRadioOption($this->
lng->txt(
"registration_codes_roles_limitation_none"),
"none");
858 $limit->addOption($opt);
860 $opt =
new ilRadioOption($this->
lng->txt(
"reg_access_limitation_none"),
"unlimited");
861 $limit->addOption($opt);
863 $opt =
new ilRadioOption($this->
lng->txt(
"reg_access_limitation_mode_absolute"),
"absolute");
864 $limit->addOption($opt);
866 $dt =
new ilDateTimeInputGUI($this->
lng->txt(
"reg_access_limitation_mode_absolute_target"),
"abs_date");
868 $opt->addSubItem($dt);
870 $opt =
new ilRadioOption($this->
lng->txt(
"reg_access_limitation_mode_relative"),
"relative");
871 $limit->addOption($opt);
873 $dur =
new ilDurationInputGUI($this->
lng->txt(
"reg_access_limitation_mode_relative_target"),
"rel_date");
875 $dur->setShowMonths(
true);
876 $dur->setShowDays(
true);
877 $dur->setShowHours(
false);
878 $dur->setShowMinutes(
false);
879 $opt->addSubItem($dur);
881 $this->form_gui->addCommandButton(
'createCodes', $this->
lng->txt(
'create'));
882 $this->form_gui->addCommandButton(
'listCodes', $this->
lng->txt(
'cancel'));
889 $q = $_REQUEST[
"term"];
902 $limit = $this->form_gui->getItemByPostVar(
"reg_limit");
903 $limit->setValue(
"none");
904 $this->tpl->setContent($this->form_gui->getHTML());
913 $valid = $this->form_gui->checkInput();
915 $number = $this->form_gui->getInput(
'reg_codes_number');
916 $role = (
int) $this->form_gui->getInput(
'reg_codes_role');
917 $local = $this->form_gui->getInput(
"reg_codes_local");
919 if (is_array($local)) {
921 foreach (array_unique($local) as $item) {
923 $role_id = $this->rbacreview->roleExists($item);
925 $role_ids[] = $role_id;
929 if (count($role_ids)) {
935 $limit = $this->form_gui->getInput(
"reg_limit");
938 $date_input = $this->form_gui->getItemByPostVar(
"abs_date");
940 if ($date < date(
"Y-m-d")) {
941 $date_input->setAlert($this->
lng->txt(
"form_msg_wrong_date"));
947 $date = $this->form_gui->getInput(
"rel_date");
948 if (!array_sum($date)) {
953 "m" => $date[
"MM"] % 12,
954 "y" => (
int) floor($date[
"MM"] / 12)
967 for ($loop = 1; $loop <= $number; $loop++) {
968 $code_types = (array) $this->form_gui->getInput(
'code_type');
976 in_array(self::CODE_TYPE_REGISTRATION, $code_types) ?
true :
false,
977 in_array(self::CODE_TYPE_EXTENSION, $code_types) ?
true :
false 981 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
982 $this->
ctrl->redirect($this,
"listCodes");
984 $this->form_gui->setValuesByPost();
985 $this->tpl->setContent($this->form_gui->getHTML());
994 if ($this->
http->wrapper()->post()->has(
'id')) {
995 $ids = $this->
http->wrapper()->post()->retrieve(
997 $this->
refinery->kindlyTo()->listOf(
1003 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'info_deleted'),
true);
1004 $this->
ctrl->redirect($this,
"listCodes");
1012 if ($this->
http->wrapper()->post()->has(
'id')) {
1013 $ids = $this->
http->wrapper()->post()->retrieve(
1015 $this->
refinery->kindlyTo()->listOf(
1021 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_select_one'),
true);
1022 $this->
ctrl->redirect($this,
'listCodes');
1027 $gui->setHeaderText($this->
lng->txt(
"info_delete_sure"));
1028 $gui->setCancel($this->
lng->txt(
"cancel"),
"listCodes");
1029 $gui->setConfirm($this->
lng->txt(
"confirm"),
"deleteCodes");
1030 $gui->setFormAction($this->
ctrl->getFormAction($this,
"deleteCodes"));
1033 foreach (
$data as $code) {
1034 $gui->addItem(
"id[]", (
string) $code[
"code_id"], $code[
"code"]);
1036 $this->tpl->setContent($gui->getHTML());
1042 $utab->resetOffset();
1043 $utab->resetFilter();
1051 $utab->resetOffset();
1052 $utab->writeFilterToSession();
1063 $utab->filter[
"code"],
1064 $utab->filter[
"role"] ? (
int) $utab->filter[
"role"] :
null,
1065 $utab->filter[
"generated"],
1066 $utab->filter[
"alimit"]
1069 if (count($codes)) {
1071 implode(
"\r\n", $codes),
1072 "ilias_registration_codes_" . date(
"d-m-Y") .
".txt",
1076 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"registration_export_codes_no_data"));
prepareAccessLimitationRoleList()
initRoleAccessLimitations()
This class represents an option in a radio group.
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
ilRegistrationSettings $registration_settings
This class represents an option in a checkbox group.
parseRoleList(array $roles, string $url)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Refinery Factory $refinery
static _lookupRegisterAllowed()
get all roles that are activated in user registration
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
static deleteCodes(array $ids)
ilGlobalTemplateInterface $tpl
ilRegistrationRoleAccessLimitations $access_limitations_obj
const CODE_TYPE_REGISTRATION
editRoles(?ilPropertyFormGUI $form=null)
ILIAS HTTP Services $http
ilPropertyFormGUI $form_gui
Class class.ilregistrationEmailRoleAssignments.
const REG_HASH_LIFETIME_MIN_VALUE
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
setVariable(string $variable, $value='')
Sets the given variable to the given value.
initFormValues(ilPropertyFormGUI $formGUI)
static getList(string $a_str)
Get completion list.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
editRoleAccessLimitations(?ilPropertyFormGUI $form=null)
getLocalRoleAutoComplete()
checkAccessBool(string $a_permission)
static http()
Fetches the global http state from ILIAS.
static _lookupTitle(int $obj_id)
static loadCodesByIds(array $ids)
prepareAutomaticRoleList()
initEmailAssignmentForm()
const IL_REG_ROLE_UNDEFINED
setSubTabs(string $activeTab='registration_settings')
Class ilRegistrationSettingsGUI.
const IL_REG_ACCESS_LIMITATION_OUT_OF_DATE
TableGUI class for registration codes.
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
static getCodesForExport(string $filter_code, ?int $filter_role, string $filter_generated, string $filter_access_limitation)
const IL_REG_ACCESS_LIMITATION_MISSING_MODE
Class class.ilRegistrationAccessLimitation.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
Class ilObjAuthSettingsGUI.
static create(int $role, int $stamp, array $local_roles, ?string $limit, ?string $limit_date, bool $reg_type, bool $ext_type)
editEmailAssignments(?ilPropertyFormGUI $form=null)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
saveRoleAccessLimitations()
const CODE_TYPE_EXTENSION
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
ilRegistrationRoleAssignments $assignments_obj
checkAccess(string $a_permission)