ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUserProfile.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
30  public const MODE_DESKTOP = 1;
31  public const MODE_REGISTRATION = 2;
32 
33  private int $mode = self::MODE_DESKTOP;
34 
36  private Language $lng;
38 
39  private array $user_fields;
40  protected string $ajax_href;
41  protected array $skip_fields; // Missing array type.
42  protected array $skip_groups; // Missing array type.
43 
45 
46  public function __construct()
47  {
49  global $DIC;
50  $this->settings = $DIC['ilSetting'];
51  $this->lng = $DIC['lng'];
52  $this->rbac_review = $DIC['rbacreview'];
53 
54  $this->user_fields = (new DefaultFields())->getDefaultProfileFields();
55  $this->user_settings_config = new ilUserSettingsConfig();
56 
57  $this->skip_groups = [];
58  $this->skip_fields = [];
59 
60  $this->lng->loadLanguageModule('awrn');
61  $this->lng->loadLanguageModule('buddysystem');
62  }
63 
64  public function getStandardFields(): array // Missing array type.
65  {
66  $fields = [];
67  foreach ($this->user_fields as $f => $p) {
68  // skip hidden groups
69  if (in_array($p['group'], $this->skip_groups) ||
70  in_array($f, $this->skip_fields)) {
71  continue;
72  }
73  $fields[$f] = $p;
74  }
75  return $fields;
76  }
77 
78  public function getLocalUserAdministrationFields(): array // Missing array type.
79  {
80  $fields = [];
81  foreach ($this->getStandardFields() as $field => $info) {
82  if ($this->settings->get('usr_settings_visib_lua_' . $field, '1')) {
83  $fields[$field] = $info;
84  } elseif ($info['visib_lua_fix_value'] ?? false) {
85  $fields[$field] = $info;
86  }
87  }
88  return $fields;
89  }
90 
91  public function skipGroup(string $group): void
92  {
93  $this->skip_groups[] = $group;
94  }
95 
96  public function skipField(string $field): void
97  {
98  $this->skip_fields[] = $field;
99  }
100 
101  public function addStandardFieldsToForm(
102  ilPropertyFormGUI $form,
103  ?ilObjUser $user = null,
104  array $custom_fields = []
105  ): void {
106  $registration_settings = null;
107  if ($this->mode === self::MODE_REGISTRATION) {
108  $registration_settings = new ilRegistrationSettings();
110  }
111 
112  $current_group = '';
113  $custom_fields_done = false;
114  foreach ($this->getStandardFields() as $field_id => $field_definition) {
115  // next group? -> diplay subheader
116  if (($field_definition['group'] !== $current_group) &&
117  $this->userSettingVisible($field_id)) {
118  list($form, $current_group, $custom_fields_done) = $this->handleSectionChange(
119  $form,
120  $current_group,
121  $field_definition['group'],
122  $custom_fields,
123  $custom_fields_done
124  );
125  }
126  $form = $this->addFieldToForm(
127  $field_id,
128  $field_definition,
129  $user,
130  $form,
131  $registration_settings
132  );
133  }
134 
135  // append custom fields as 'other'
136  if ($custom_fields !== [] && !$custom_fields_done) {
137  $form = $this->addCustomFieldsToForm(
138  $form,
139  $custom_fields,
140  $current_group
141  );
142  }
143  }
144 
145  private function addRegistrationFieldsToFieldArray(): void
146  {
147  $this->user_fields['username']['group'] = 'login_data';
148  $this->user_fields['password']['group'] = 'login_data';
149  $this->user_fields['language']['default'] = $this->lng->lang_key;
150 
151  // different position for role
152  $roles = $this->user_fields['roles'];
153  unset($this->user_fields['roles']);
154  $this->user_fields['roles'] = $roles;
155  $this->user_fields['roles']['group'] = 'settings';
156  }
157 
158  private function handleSectionChange(
159  ilPropertyFormGUI $form,
160  string $current_group,
161  string $next_group,
162  array $custom_fields,
163  bool $custom_fields_done
164  ): array {
165  if ($custom_fields !== [] && !$custom_fields_done
166  && ($current_group === 'other' || $next_group === 'settings')) {
167  // add 'other' subheader
168  $form = $this->addCustomFieldsToForm(
169  $form,
170  $custom_fields,
171  $current_group
172  );
173  $custom_fields_done = true;
174  }
175 
176  $section_header = new ilFormSectionHeaderGUI();
177  $section_header->setTitle($this->lng->txt($next_group));
178  $form->addItem($section_header);
179  return [
180  $form,
181  $next_group,
182  $custom_fields_done
183  ];
184  }
185 
186  private function addFieldToForm(
187  string $field_id,
188  array $field_definition,
189  ?ilObjUser $user,
190  ilPropertyFormGUI $form,
191  ?ilRegistrationSettings $registration_settings
192  ): ilPropertyFormGUI {
193  $method = $field_definition['method'] ?? '';
194 
195  $lang_var = (isset($field_definition['lang_var']) && $field_definition['lang_var'] !== '')
196  ? $field_definition['lang_var']
197  : $field_id;
198 
199  switch ($field_definition['input']) {
200  case 'text':
201  if (!$this->userSettingVisible($field_id)) {
202  break;
203  }
204 
205  $form->addItem(
206  $this->getTextInput(
207  $field_id,
208  $field_definition,
209  $method,
210  $lang_var,
211  $user
212  )
213  );
214  break;
215 
216  case 'textarea':
217  if (!$this->userSettingVisible($field_id)) {
218  break;
219  }
220 
221  $form->addItem(
222  $this->getTextareaInput(
223  $field_id,
224  $field_definition,
225  $method,
226  $lang_var,
227  $user
228  )
229  );
230  break;
231 
232  case 'multitext':
233  if (!$this->userSettingVisible($field_id)) {
234  break;
235  }
236 
237  $form->addItem(
238  $this->getMultitextInput(
239  $field_id,
240  $field_definition,
241  $method,
242  $lang_var,
243  $user
244  )
245  );
246  break;
247 
248  case 'radio':
249  if (!$this->userSettingVisible($field_id)) {
250  break;
251  }
252 
253  $form->addItem(
254  $this->getRadioInput(
255  $field_id,
256  $field_definition,
257  $method,
258  $lang_var,
259  $user
260  )
261  );
262  break;
263 
264  case 'login':
265  $form->addItem(
266  $this->getLoginInput($field_definition, $user)
267  );
268  break;
269 
270  case 'sel_country':
271  if (!$this->userSettingVisible($field_id)) {
272  break;
273  }
274 
275  $form->addItem(
276  $this->getCountryInput($field_id, $method, $lang_var, $user)
277  );
278  break;
279 
280  case 'birthday':
281  if (!$this->userSettingVisible($field_id)) {
282  break;
283  }
284 
285  $form->addItem(
286  $this->getBirthdayInput($field_id, $method, $lang_var, $user)
287  );
288  break;
289 
290  case 'picture':
291  if (!$this->userSettingVisible($field_id) || $user === null) {
292  break;
293  }
294 
295  $form->addItem(
296  $this->getImageInput($form->getFileUpload('userfile'), $user)
297  );
298  break;
299 
300  case 'roles':
301  $roles_input = $this->getRolesInput($field_id, $registration_settings, $user);
302  if ($roles_input !== null) {
303  $form->addItem($roles_input);
304  }
305  break;
306 
307  case 'second_email':
308  case 'email':
309  $email_mandatory = $this->mode === self::MODE_REGISTRATION
310  && $field_definition['input'] === 'email'
311  && $registration_settings !== null
312  && $registration_settings->passwordGenerationEnabled();
313 
314  if (!$email_mandatory && !$this->userSettingVisible($field_id)) {
315  break;
316  }
317 
318  $form->addItem(
319  $this->getEmailInput(
320  $field_id,
321  $method,
322  $lang_var,
323  $email_mandatory,
324  $user
325  )
326  );
327  break;
328 
329  case 'password':
330  if ($this->mode !== self::MODE_REGISTRATION) {
331  break;
332  }
333 
334  $form->addItem(
335  $this->getPasswordInput(
336  $field_id,
337  $lang_var,
338  $registration_settings
339  )
340  );
341  break;
342 
343  case 'language':
344  if (!$this->userSettingVisible($field_id)) {
345  break;
346  }
347 
348  $form->addItem(
349  $this->getLanguageInput(
350  $field_id,
351  $method,
352  $lang_var,
353  $user
354  )
355  );
356  break;
357 
358  case 'noneditable':
359  if ($this->mode !== self::MODE_DESKTOP || $this->userSettingVisible($field_id)) {
360  break;
361  }
362 
363  $form->addItem(
364  $this->getNonEditableInput($method, $lang_var, $user)
365  );
366  break;
367  }
368 
369  return $form;
370  }
371 
372  private function getTextInput(
373  string $field_id,
374  array $field_definition,
375  string $method,
376  string $lang_var,
377  ?ilObjUser $user
378  ): ilFormPropertyGUI {
379  $text_input = new ilTextInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
380  $text_input->setValue('');
381  if ($user !== null) {
382  $text_input->setValue($user->$method() ?? '');
383  }
384  $text_input->setMaxLength($field_definition['maxlength']);
385  $text_input->setSize($field_definition['size']);
386  $text_input->setRequired((bool) $this->settings->get('require_' . $field_id));
387  if (!$text_input->getRequired() || $text_input->getValue()) {
388  $text_input->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
389  }
390 
391  return $text_input;
392  }
393 
394  private function getTextareaInput(
395  string $field_id,
396  array $field_definition,
397  string $method,
398  string $lang_var,
399  ?ilObjUser $user
400  ): ilFormPropertyGUI {
401  $text_area = new ilTextAreaInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
402  if ($user !== null) {
403  $text_area->setValue($user->$method() ?? '');
404  }
405  $text_area->setRows($field_definition['rows']);
406  $text_area->setCols($field_definition['cols']);
407  $text_area->setRequired((bool) $this->settings->get('require_' . $field_id));
408  if (!$text_area->getRequired() || $text_area->getValue()) {
409  $text_area->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
410  }
411  return $text_area;
412  }
413 
414  private function getMultitextInput(
415  string $field_id,
416  array $field_definition,
417  string $method,
418  string $lang_var,
419  ?ilObjUser $user
420  ): ilFormPropertyGUI {
421  $multi_text_input = new ilTextInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
422  $multi_text_input->setMulti(true);
423  if ($user !== null) {
424  $multi_text_input->setValue($user->$method());
425  }
426  $multi_text_input->setMaxLength($field_definition['maxlength']);
427  $multi_text_input->setSize($field_definition['size']);
428  $multi_text_input->setRequired((bool) $this->settings->get('require_' . $field_id));
429  if (!$multi_text_input->getRequired() || $multi_text_input->getValue()) {
430  $multi_text_input->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
431  }
432  if ($this->ajax_href) {
433  // add field to ajax call
434  $multi_text_input->setDataSource($this->ajax_href . '&f=' . $field_id);
435  }
436  return $multi_text_input;
437  }
438 
439  private function getRadioInput(
440  string $field_id,
441  array $field_definition,
442  string $method,
443  string $lang_var,
444  ?ilObjUser $user
445  ): ilFormPropertyGUI {
446  $radio_group = new ilRadioGroupInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
447  if ($user) {
448  $radio_group->setValue($user->$method());
449  }
450  foreach ($field_definition['values'] as $k => $v) {
451  $op = new ilRadioOption($this->lng->txt($v), $k);
452  $radio_group->addOption($op);
453  }
454  $radio_group->setRequired((bool) $this->settings->get('require_' . $field_id));
455  if (!$radio_group->getRequired() || $radio_group->getValue()) {
456  $radio_group->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
457  }
458  return $radio_group;
459  }
460 
461  private function getLoginInput(
462  array $field_definition,
463  ?ilObjUser $user
464  ): ilFormPropertyGUI {
465  $login_input = new ilNonEditableValueGUI($this->lng->txt('username'), 'ne_un');
466 
467  if ((int) $this->settings->get('allow_change_loginname') || $this->mode == self::MODE_REGISTRATION) {
468  $login_input = new ilTextInputGUI($this->lng->txt('username'), 'username');
469  $login_input->setMaxLength((int) $field_definition['maxlength']);
470  $login_input->setSize(255);
471  $login_input->setRequired(true);
472  }
473 
474  if ($user !== null) {
475  $login_input->setValue($user->getLogin());
476  }
477  return $login_input;
478  }
479 
480  private function getCountryInput(
481  string $field_id,
482  string $method,
483  string $lang_var,
484  ?ilObjUser $user
485  ): ilFormPropertyGUI {
486  $country_input = new ilCountrySelectInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
487  if ($user) {
488  $country_input->setValue($user->$method());
489  }
490  $country_input->setRequired((bool) $this->settings->get('require_' . $field_id));
491  if (!$country_input->getRequired() || $country_input->getValue()) {
492  $country_input->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
493  }
494  return $country_input;
495  }
496 
497  private function getBirthdayInput(
498  string $field_id,
499  string $method,
500  string $lang_var,
501  ?ilObjUser $user
502  ): ilFormPropertyGUI {
503  $birthday_input = new ilBirthdayInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
504  $date = null;
505  if ($user && $user->$method() && strlen($user->$method())) {
506  $date = new ilDateTime($user->$method(), IL_CAL_DATE);
507  $birthday_input->setDate($date);
508  }
509  $birthday_input->setRequired((bool) $this->settings->get('require_' . $field_id));
510  if (!$birthday_input->getRequired() || $date !== null) {
511  $birthday_input->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
512  }
513  return $birthday_input;
514  }
515 
516  private function getImageInput(
517  array $file_upload,
518  ?ilObjUser $user
519  ): ilFormPropertyGUI {
520  $image_input = new ilImageFileInputGUI($this->lng->txt('personal_picture'), 'userfile');
521  $image_input->setAllowCapture(true);
522  $image_input->setDisabled((bool) $this->settings->get('usr_settings_disable_upload'));
523 
524  if ($file_upload['name'] ?? false) {
525  $image_input->setPending($file_upload['name']);
526  } else {
527  $picture_path = ilObjUser::_getPersonalPicturePath(
528  $user->getId(),
529  'small',
530  true,
531  true
532  );
533  if ($picture_path !== '') {
534  $image_input->setImage($picture_path);
535  $image_input->setAlt($this->lng->txt('personal_picture'));
536  }
537  }
538  return $image_input;
539  }
540 
541  private function getRolesInput(
542  string $field_id,
543  ?ilRegistrationSettings $registration_settings,
544  ?ilObjUser $user
545  ): ?ilFormPropertyGUI {
546  $role_names = '';
547  if ($this->mode === self::MODE_DESKTOP
548  && $this->userSettingVisible('roles')) {
549  $global_roles = $this->rbac_review->getGlobalRoles();
550  foreach ($global_roles as $role_id) {
551  if (in_array($role_id, $this->rbac_review->assignedRoles($user->getId()))) {
552  $role_obj = ilObjectFactory::getInstanceByObjId($role_id);
553  $role_names .= $role_obj->getTitle() . ', ';
554  unset($role_obj);
555  }
556  }
557  $roles_input = new ilNonEditableValueGUI($this->lng->txt('default_roles'), 'ne_dr');
558  $roles_input->setValue(substr($role_names, 0, -2));
559  return $roles_input;
560  }
561 
562  if ($this->mode === self::MODE_REGISTRATION
563  && $registration_settings->roleSelectionEnabled()) {
564  $options = [];
565  foreach (ilObjRole::_lookupRegisterAllowed() as $role) {
566  $options[$role['id']] = $role['title'];
567  }
568 
569  if ($options === []) {
570  return null;
571  }
572 
573  if (count($options) === 1) {
574  $roles_input = new ilHiddenInputGUI('usr_' . $field_id);
575  $keys = array_keys($options);
576  $roles_input->setValue((string) array_shift($keys));
577  return $roles_input;
578  }
579 
580  $options_with_empty_value = ['' => $this->lng->txt('please_choose')] + $options;
581  $roles_input = new ilSelectInputGUI($this->lng->txt('default_role'), 'usr_' . $field_id);
582  $roles_input->setOptions($options_with_empty_value);
583  $roles_input->setRequired(true);
584  if (!$roles_input->getRequired()) {
585  $roles_input->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
586  }
587  return $roles_input;
588  }
589 
590  return null;
591  }
592 
593  private function getEmailInput(
594  string $field_id,
595  string $method,
596  string $lang_var,
597  bool $email_mandatory,
598  ?ilObjUser $user
599  ): ilFormPropertyGUI {
600  $email_input = new ilEMailInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
601  if ($user) {
602  $email_input->setValue($user->$method());
603  }
604  $email_input->setRequired($email_mandatory || $this->settings->get('require_' . $field_id));
605  if (!$email_input->getRequired() || $email_input->getValue()) {
606  $email_input->setDisabled((bool) $this->settings->get('usr_settings_disable_' . $field_id));
607  }
608  if (self::MODE_REGISTRATION === $this->mode) {
609  $email_input->setRetype(true);
610  }
611  return $email_input;
612  }
613 
614  private function getPasswordInput(
615  string $field_id,
616  string $lang_var,
617  ilRegistrationSettings $registration_settings
618  ): ilFormPropertyGUI {
619  if ($registration_settings->passwordGenerationEnabled()) {
620  $password_input = new ilNonEditableValueGUI($this->lng->txt($lang_var));
621  $password_input->setValue($this->lng->txt('reg_passwd_via_mail'));
622  return $password_input;
623  }
624 
625  $password_input = new ilPasswordInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
626  $password_input->setUseStripSlashes(false);
627  $password_input->setRequired(true);
628  $password_input->setInfo(ilSecuritySettingsChecker::getPasswordRequirementsInfo());
629  return $password_input;
630  }
631 
632  private function getLanguageInput(
633  string $field_id,
634  string $method,
635  string $lang_var,
636  ?ilObjUser $user
637  ): ilFormPropertyGUI {
638  $options = [];
639  $this->lng->loadLanguageModule('meta');
640  foreach ($this->lng->getInstalledLanguages() as $lang_key) {
641  $options[$lang_key] = $this->lng->txt('meta_l_' . $lang_key);
642  }
643 
644  asort($options);
645  $language_input = new ilSelectInputGUI($this->lng->txt($lang_var), 'usr_' . $field_id);
646  if ($user !== null) {
647  $language_input->setValue($user->$method());
648  }
649 
650  $language_input->setOptions($options);
651  $language_input->setRequired((bool) $this->settings->get('require_' . $field_id));
652  if (!$language_input->getRequired() || $language_input->getValue()) {
653  $language_input->setDisabled(
654  $this->settings->get('usr_settings_disable_' . $field_id) === '1'
655  || count($options) <= 1
656  );
657  }
658  return $language_input;
659  }
660 
661  private function getNonEditableInput(
662  string $method,
663  string $lang_var,
664  ilObjUser $user
665  ): ilFormPropertyGUI {
666  $non_editable_input = new ilNonEditableValueGUI($this->lng->txt($lang_var));
667  $non_editable_input->setValue($user->$method());
668  return $non_editable_input;
669  }
670 
671  private function addCustomFieldsToForm(
672  ilPropertyFormGUI $form,
673  array $custom_fields,
674  string $current_group
675  ): ilPropertyFormGUI {
676  if ($current_group !== 'other') {
677  $section_header = new ilFormSectionHeaderGUI();
678  $section_header->setTitle($this->lng->txt('other'));
679  $form->addItem($section_header);
680  }
681  foreach ($custom_fields as $custom_field) {
682  $form->addItem($custom_field);
683  }
684  return $form;
685  }
686 
687  public function setAjaxCallback(string $href): void
688  {
689  $this->ajax_href = $href;
690  }
691 
692  public function userSettingVisible(string $setting): bool
693  {
694  if ($this->mode === self::MODE_DESKTOP) {
695  return ($this->user_settings_config->isVisible($setting));
696  }
697 
698  if (isset($this->user_fields[$setting]['visib_reg_hide'])
699  && $this->user_fields[$setting]['visib_reg_hide'] === true) {
700  return true;
701  }
702 
703  return ($this->settings->get('usr_settings_visib_reg_' . $setting, '1')
704  || $this->settings->get('require_' . $setting, '0'));
705  }
706 
707  public function setMode(int $mode): bool
708  {
709  if (in_array($mode, [self::MODE_DESKTOP, self::MODE_REGISTRATION])) {
710  $this->mode = $mode;
711  return true;
712  }
713  return false;
714  }
715 
716  public function isProfileIncomplete(
717  ilObjUser $user,
718  bool $include_udf = true,
719  bool $personal_data_only = true
720  ): bool {
721  // standard fields
722  foreach ($this->user_fields as $field => $definition) {
723  // only if visible in personal data
724  if ($personal_data_only && !$this->user_settings_config->isVisible($field)) {
725  continue;
726  }
727 
728  if ($this->settings->get('require_' . $field) && $definition['method']
729  && empty($user->{$definition['method']}())) {
730  return true;
731  }
732  }
733 
734  // custom fields
735  if (!$include_udf) {
736  return false;
737  }
738 
739  $user_defined_data = $user->getUserDefinedData();
740  $user_defined_fields = ilUserDefinedFields::_getInstance();
741  foreach ($user_defined_fields->getRequiredDefinitions() as $field => $definition) {
742  // only if visible in personal data
743  if ($personal_data_only && !$definition['visible']) {
744  continue;
745  }
746 
747  if (!($user_defined_data['f_' . $field] ?? false)) {
748  ilLoggerFactory::getLogger('user')->info('Profile is incomplete due to missing required udf.');
749  return true;
750  }
751  }
752 
753  return false;
754  }
755 
756  protected function isEditableByUser(string $setting): bool
757  {
758  return $this->user_settings_config->isVisibleAndChangeable($setting);
759  }
760 
761  public function getIgnorableRequiredSettings(): array // Missing array type.
762  {
763  $ignorableSettings = [];
764 
765  foreach (array_keys($this->user_fields) as $field) {
766  // !!!username and password must not be ignored!!!
767  if ('username' == $field ||
768  'password' == $field) {
769  continue;
770  }
771 
772  // Field is not required -> continue
773  if (!$this->settings->get('require_' . $field)) {
774  continue;
775  }
776 
777  if ($this->isEditableByUser($field)) {
778  $ignorableSettings[] = $field;
779  }
780  }
781 
782  return $ignorableSettings;
783  }
784 }
This class represents an option in a radio group.
getEmailInput(string $field_id, string $method, string $lang_var, bool $email_mandatory, ?ilObjUser $user)
setAjaxCallback(string $href)
addCustomFieldsToForm(ilPropertyFormGUI $form, array $custom_fields, string $current_group)
static getLogger(string $a_component_id)
Get component logger.
This class represents a selection list property in a property form.
static _lookupRegisterAllowed()
get all roles that are activated in user registration
skipGroup(string $group)
setDisabled(bool $a_disabled)
This class represents a selection list property in a property form.
userSettingVisible(string $setting)
getRolesInput(string $field_id, ?ilRegistrationSettings $registration_settings, ?ilObjUser $user)
Class ilUserProfile.
getTextareaInput(string $field_id, array $field_definition, string $method, string $lang_var, ?ilObjUser $user)
addStandardFieldsToForm(ilPropertyFormGUI $form, ?ilObjUser $user=null, array $custom_fields=[])
skipField(string $field)
getMultitextInput(string $field_id, array $field_definition, string $method, string $lang_var, ?ilObjUser $user)
setValue(string $a_value)
setOptions(array $a_options)
getBirthdayInput(string $field_id, string $method, string $lang_var, ?ilObjUser $user)
handleSectionChange(ilPropertyFormGUI $form, string $current_group, string $next_group, array $custom_fields, bool $custom_fields_done)
This class represents a email property in a property form.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilRbacReview $rbac_review
This class represents a hidden form property in a property form.
addFieldToForm(string $field_id, array $field_definition, ?ilObjUser $user, ilPropertyFormGUI $form, ?ilRegistrationSettings $registration_settings)
This class represents a property in a property form.
setValue($a_value)
Set Value.
getLoginInput(array $field_definition, ?ilObjUser $user)
getTextInput(string $field_id, array $field_definition, string $method, string $lang_var, ?ilObjUser $user)
global $DIC
Definition: shib_login.php:22
This class represents a password property in a property form.
setUseStripSlashes(bool $a_stat)
En/disable use of stripslashes.
static getPasswordRequirementsInfo()
infotext for ilPasswordInputGUI setInfo()
getNonEditableInput(string $method, string $lang_var, ilObjUser $user)
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
getFileUpload(string $a_field, ?string $a_index=null, ?string $a_sub_index=null)
Get file upload data.
Class ilObjAuthSettingsGUI.
This class represents an image file property in a property form.
ilUserSettingsConfig $user_settings_config
const IL_CAL_DATE
isProfileIncomplete(ilObjUser $user, bool $include_udf=true, bool $personal_data_only=true)
getPasswordInput(string $field_id, string $lang_var, ilRegistrationSettings $registration_settings)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRadioInput(string $field_id, array $field_definition, string $method, string $lang_var, ?ilObjUser $user)
This class represents a text property in a property form.
getCountryInput(string $field_id, string $method, string $lang_var, ?ilObjUser $user)
getLanguageInput(string $field_id, string $method, string $lang_var, ?ilObjUser $user)
isEditableByUser(string $setting)
getImageInput(array $file_upload, ?ilObjUser $user)