ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilUserProfile.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4// mjansen@databay.de essential for mail constants, do not remove this include
5include_once 'Services/Mail/classes/class.ilMailOptions.php';
6
16{
17 const MODE_DESKTOP = 1;
19
20 private static $mode = self::MODE_DESKTOP;
21
22 // this array should be used in all places where user data is tackled
23 // in the future: registration, personal profile, user administration
24 // public profile, user import/export
25 // for now this is not implemented yet. Please list places, that already use it:
26 //
27 // - personal profile
28 // - (global) standard user profile fields settings
29 //
30 // the following attributes are defined (can be extended if needed):
31 // - input: input type
32 // standard inputs: text, radio, selection, textarea
33 // special inputs: login
34 // - input dependend attributes
35 // - maxlength, sizte for text
36 // - values array for radio
37 // - cols/rows for text areas
38 // - options array for selections
39 // - method: ilObjUser get-method, e.g. getFirstname
40 // - group: group id (id is also used as lang_var for sub headers in forms
41 // - lang_var: if key should not be used as lang var, this overwrites the usage in forms
42 // - settings property related attributes, settingsproperties are ("visible", "changeable",
43 // "searchable", "required", "export", "course_export" and "registration")
44 // - <settingsproperty>_hide: hide this property in settings (not implemented)
45 // - <settingsproperty>_fix_value: property has a fix value (cannot be changed)
46 private static $user_field = array(
47 "username" => array(
48 "input" => "login",
49 "maxlength" => 64,
50 "size" => 40,
51 "method" => "getLogin",
52 "course_export_fix_value" => 1,
53 "group_export_fix_value" => 1,
54 "changeable_hide" => true,
55 "required_hide" => true,
56 "group" => "personal_data"),
57 "password" => array(
58 "input" => "password",
59 "required_hide" => true,
60 "visib_reg_hide" => true,
61 'visib_lua_fix_value' => 0,
62 "course_export_hide" => true,
63 "export_hide" => false,
64 "group_export_hide" => true,
65 "lists_hide" => true,
66 "group" => "personal_data"),
67 "firstname" => array(
68 "input" => "text",
69 "maxlength" => 32,
70 "size" => 40,
71 "method" => "getFirstname",
72 "required_fix_value" => 1,
73 "visib_reg_fix_value" => 1,
74 'visib_lua_fix_value' => 1,
75 "course_export_fix_value" => 1,
76 "group_export_fix_value" => 1,
77 "group" => "personal_data"),
78 "lastname" => array(
79 "input" => "text",
80 "maxlength" => 32,
81 "size" => 40,
82 "method" => "getLastname",
83 "required_fix_value" => 1,
84 "visib_reg_fix_value" => 1,
85 'visib_lua_fix_value' => 1,
86 "course_export_fix_value" => 1,
87 "group_export_fix_value" => 1,
88 "group" => "personal_data"),
89 "title" => array(
90 "input" => "text",
91 "lang_var" => "person_title",
92 "maxlength" => 32,
93 "size" => 40,
94 "method" => "getUTitle",
95 "group" => "personal_data"),
96 "birthday" => array(
97 "input" => "birthday",
98 "lang_var" => "birthday",
99 "maxlength" => 32,
100 "size" => 40,
101 "method" => "getBirthday",
102 "group" => "personal_data"),
103 "gender" => array(
104 "input" => "radio",
105 "values" => array("n" => "salutation_n", "f" => "salutation_f", "m" => "salutation_m"),
106 "method" => "getGender",
107 "group" => "personal_data"),
108 "upload" => array(
109 "input" => "picture",
110 "required_hide" => true,
111 "visib_reg_hide" => true,
112 "course_export_hide" => true,
113 "group_export_hide" => true,
114 "lists_hide" => true,
115 "lang_var" => "personal_picture",
116 "group" => "personal_data"),
117 "roles" => array(
118 "input" => "roles",
119 "changeable_hide" => true,
120 "required_hide" => true,
121 "visib_reg_hide" => true,
122 "export_hide" => true,
123 "course_export_hide" => true,
124 "group_export_hide" => true,
125 "lists_hide" => true,
126 "group" => "personal_data"),
127 "interests_general" => array(
128 "input" => "multitext",
129 "maxlength" => 40,
130 "size" => 40,
131 "method" => "getGeneralInterests",
132 "course_export_hide" => true,
133 "group_export_hide" => true,
134 "lists_hide" => true,
135 "group" => "interests"),
136 "interests_help_offered" => array(
137 "input" => "multitext",
138 "maxlength" => 40,
139 "size" => 40,
140 "method" => "getOfferingHelp",
141 "course_export_hide" => true,
142 "group_export_hide" => true,
143 "lists_hide" => true,
144 "group" => "interests"),
145 "interests_help_looking" => array(
146 "input" => "multitext",
147 "maxlength" => 40,
148 "size" => 40,
149 "method" => "getLookingForHelp",
150 "course_export_hide" => true,
151 "group_export_hide" => true,
152 "lists_hide" => true,
153 "group" => "interests"),
154 "org_units" => array(
155 "input" => "noneditable",
156 "lang_var" => "objs_orgu",
157 "required_hide" => true,
158 "visib_reg_hide" => true,
159 "course_export_hide" => false,
160 "group_export_hide" => false,
161 "export_hide" => true,
162 "changeable_hide" => true,
163 "changeable_fix_value" => 0,
164 "changeable_lua_hide" => true,
165 "changeable_lua_fix_value" => 0,
166 "method" => "getOrgUnitsRepresentation",
167 "group" => "contact_data"),
168 "institution" => array(
169 "input" => "text",
170 "maxlength" => 80,
171 "size" => 40,
172 "method" => "getInstitution",
173 "group" => "contact_data"),
174 "department" => array(
175 "input" => "text",
176 "maxlength" => 80,
177 "size" => 40,
178 "method" => "getDepartment",
179 "group" => "contact_data"),
180 "street" => array(
181 "input" => "text",
182 "maxlength" => 40,
183 "size" => 40,
184 "method" => "getStreet",
185 "group" => "contact_data"),
186 "zipcode" => array(
187 "input" => "text",
188 "maxlength" => 10,
189 "size" => 10,
190 "method" => "getZipcode",
191 "group" => "contact_data"),
192 "city" => array(
193 "input" => "text",
194 "maxlength" => 40,
195 "size" => 40,
196 "method" => "getCity",
197 "group" => "contact_data"),
198 "country" => array(
199 "input" => "text",
200 "maxlength" => 40,
201 "size" => 40,
202 "method" => "getCountry",
203 "group" => "contact_data"),
204 "sel_country" => array(
205 "input" => "sel_country",
206 "method" => "getSelectedCountry",
207 "group" => "contact_data"),
208 "phone_office" => array(
209 "input" => "text",
210 "maxlength" => 40,
211 "size" => 40,
212 "method" => "getPhoneOffice",
213 "group" => "contact_data"),
214 "phone_home" => array(
215 "input" => "text",
216 "maxlength" => 40,
217 "size" => 40,
218 "method" => "getPhoneHome",
219 "group" => "contact_data"),
220 "phone_mobile" => array(
221 "input" => "text",
222 "maxlength" => 40,
223 "size" => 40,
224 "method" => "getPhoneMobile",
225 "group" => "contact_data"),
226 "fax" => array(
227 "input" => "text",
228 "maxlength" => 40,
229 "size" => 40,
230 "method" => "getFax",
231 "group" => "contact_data"),
232 "email" => array(
233 "input" => "email",
234 "maxlength" => 40,
235 "size" => 40,
236 "method" => "getEmail",
237 "group" => "contact_data"),
238 "second_email" => array(
239 "input" => "second_email",
240 "maxlength" => 40,
241 "size" => 40,
242 "method" => "getSecondEmail",
243 "group" => "contact_data"),
244 "hobby" => array(
245 "input" => "textarea",
246 "rows" => 3,
247 "cols" => 45,
248 "method" => "getHobby",
249 "lists_hide" => true,
250 "group" => "contact_data"),
251 "referral_comment" => array(
252 "input" => "textarea",
253 "rows" => 3,
254 "cols" => 45,
255 "method" => "getComment",
256 "course_export_hide" => true,
257 "group_export_hide" => true,
258 "lists_hide" => true,
259 "group" => "contact_data"),
260 "matriculation" => array(
261 "input" => "text",
262 "maxlength" => 40,
263 "size" => 40,
264 "method" => "getMatriculation",
265 "group" => "other"),
266 "language" => array(
267 "input" => "language",
268 "method" => "getLanguage",
269 "required_hide" => true,
270 "visib_reg_hide" => true,
271 "course_export_hide" => true,
272 "group_export_hide" => true,
273 "group" => "settings"),
274 "skin_style" => array(
275 "input" => "skinstyle",
276 "required_hide" => true,
277 "visib_reg_hide" => true,
278 "course_export_hide" => true,
279 "group_export_hide" => true,
280 "group" => "settings"),
281 "hits_per_page" => array(
282 "input" => "hitsperpage",
283 "default" => 10,
284 "options" => array(
285 10 => 10, 15 => 15, 20 => 20, 30 => 30, 40 => 40,
286 50 => 50, 100 => 100, 9999 => 9999),
287 "required_hide" => true,
288 "visib_reg_hide" => true,
289 "course_export_hide" => true,
290 "group_export_hide" => true,
291 "group" => "settings"),
292 /*"show_users_online" => array(
293 "input" => "selection",
294 "default" => "y",
295 "options" => array(
296 "y" => "users_online_show_short_y",
297 "associated" => "users_online_show_short_associated",
298 "n" => "users_online_show_short_n"),
299 "required_hide" => true,
300 "visib_reg_hide" => true,
301 "course_export_hide" => true,
302 "group_export_hide" => true,
303 "group" => "settings"),*/
304 "hide_own_online_status" => array(
305 "input" => "selection",
306 "lang_var" => "awrn_user_show",
307 "required_hide" => true,
308 "visib_reg_hide" => true,
309 "course_export_hide" => true,
310 "group_export_hide" => true,
311 "group" => "settings",
312 "default" => "y",
313 "options" => array(
314 "y" => "user_awrn_hide",
315 "n" => "user_awrn_show"
316 )),
317 "bs_allow_to_contact_me" => array(
318 "input" => "selection",
319 "lang_var" => "buddy_allow_to_contact_me",
320 "required_hide" => true,
321 "visib_reg_hide" => true,
322 "course_export_hide" => true,
323 "group_export_hide" => true,
324 "group" => "settings",
325 "default" => "y",
326 "options" => array(
327 "n" => "buddy_allow_to_contact_me_no",
328 "y" => "buddy_allow_to_contact_me_yes"
329 )
330 ),
331 "chat_osc_accept_msg" => array(
332 "input" => "selection",
333 "lang_var" => "chat_osc_accept_msg",
334 "required_hide" => true,
335 "visib_reg_hide" => true,
336 "course_export_hide" => true,
337 "group_export_hide" => true,
338 "group" => "settings",
339 "default" => "y",
340 "options" => array(
341 "n" => "chat_osc_accepts_messages_no",
342 "y" => "chat_osc_accepts_messages_yes"
343 )
344 ),
345 "preferences" => array(
346 "visible_fix_value" => 1,
347 "changeable_fix_value" => 1,
348 "required_hide" => true,
349 "visib_reg_hide" => true,
350 "course_export_hide" => true,
351 "group_export_hide" => true,
352 "group" => "preferences"),
353 "mail_incoming_mail" => array(
354 "input" => "selection",
355 "default" => "y",
356 "options" => array(
357 ilMailOptions::INCOMING_LOCAL => "mail_incoming_local",
358 ilMailOptions::INCOMING_EMAIL => "mail_incoming_smtp",
359 ilMailOptions::INCOMING_BOTH => "mail_incoming_both"),
360 "required_hide" => true,
361 "visib_reg_hide" => true,
362 "course_export_hide" => true,
363 "group_export_hide" => true,
364 "export_hide" => true,
365 "search_hide" => true,
366 "group" => "settings")
367
368 );
369
373 public function __construct()
374 {
375 global $lng;
376
377 $this->skip_groups = array();
378 $this->skip_fields = array();
379
380 // for hide me from awareness tool text
381 // not nicest workaround, but better than using common block
382 $lng->loadLanguageModule("awrn");
383 $lng->loadLanguageModule("buddysystem");
384 }
385
389 public function getStandardFields()
390 {
391 $fields = array();
392 foreach (self::$user_field as $f => $p) {
393 // skip hidden groups
394 if (in_array($p["group"], $this->skip_groups) ||
395 in_array($f, $this->skip_fields)) {
396 continue;
397 }
398 $fields[$f] = $p;
399 }
400 return $fields;
401 }
402
408 {
409 global $ilSetting;
410
411 $settings = $ilSetting->getAll();
412
413 $fields = array();
414 foreach ($this->getStandardFields() as $field => $info) {
415 if ($ilSetting->get('usr_settings_visib_lua_' . $field, 1)) {
416 $fields[$field] = $info;
417 } elseif ($info['visib_lua_fix_value']) {
418 $fields[$field] = $info;
419 }
420 }
421 return $fields;
422 }
423
424
428 public function skipGroup($a_group)
429 {
430 $this->skip_groups[] = $a_group;
431 }
432
436 public function skipField($a_field)
437 {
438 $this->skip_fields[] = $a_field;
439 }
440
444 public function addStandardFieldsToForm($a_form, $a_user = null, array $custom_fields = null)
445 {
446 global $ilSetting, $lng, $rbacreview, $ilias;
447
448 // custom registration settings
449 if (self::$mode == self::MODE_REGISTRATION) {
450 include_once 'Services/Registration/classes/class.ilRegistrationSettings.php';
451 $registration_settings = new ilRegistrationSettings();
452
453 self::$user_field["username"]["group"] = "login_data";
454 self::$user_field["password"]["group"] = "login_data";
455 self::$user_field["language"]["default"] = $lng->lang_key;
456
457 // different position for role
458 $roles = self::$user_field["roles"];
459 unset(self::$user_field["roles"]);
460 self::$user_field["roles"] = $roles;
461 self::$user_field["roles"]["group"] = "settings";
462 }
463
464 $fields = $this->getStandardFields();
465 $current_group = "";
466 $custom_fields_done = false;
467 foreach ($fields as $f => $p) {
468 // next group? -> diplay subheader
469 if (($p["group"] != $current_group) &&
471 if (is_array($custom_fields) && !$custom_fields_done) {
472 // should be appended to "other" or at least before "settings"
473 if ($current_group == "other" || $p["group"] == "settings") {
474 // add "other" subheader
475 if ($current_group != "other") {
476 $sh = new ilFormSectionHeaderGUI();
477 $sh->setTitle($lng->txt("other"));
478 $a_form->addItem($sh);
479 }
480 foreach ($custom_fields as $custom_field) {
481 $a_form->addItem($custom_field);
482 }
483 $custom_fields_done = true;
484 }
485 }
486
487 $sh = new ilFormSectionHeaderGUI();
488 $sh->setTitle($lng->txt($p["group"]));
489 $a_form->addItem($sh);
490 $current_group = $p["group"];
491 }
492
493 $m = "";
494 if (isset($p["method"])) {
495 $m = $p["method"];
496 }
497
498 $lv = (isset($p["lang_var"]) && $p["lang_var"] != "")
499 ? $p["lang_var"]
500 : $f;
501
502 switch ($p["input"]) {
503 case "login":
504 if ((int) $ilSetting->get('allow_change_loginname') || self::$mode == self::MODE_REGISTRATION) {
505 $val = new ilTextInputGUI($lng->txt('username'), 'username');
506 if ($a_user) {
507 $val->setValue($a_user->getLogin());
508 }
509 $val->setMaxLength($p['maxlength']);
510 $val->setSize(40);
511 $val->setRequired(true);
512 } else {
513 // user account name
514 $val = new ilNonEditableValueGUI($lng->txt("username"), 'ne_un');
515 if ($a_user) {
516 $val->setValue($a_user->getLogin());
517 }
518 }
519 $a_form->addItem($val);
520 break;
521
522 case "text":
524 $ti = new ilTextInputGUI($lng->txt($lv), "usr_" . $f);
525 if ($a_user) {
526 $ti->setValue($a_user->$m());
527 }
528 $ti->setMaxLength($p["maxlength"]);
529 $ti->setSize($p["size"]);
530 $ti->setRequired($ilSetting->get("require_" . $f));
531 if (!$ti->getRequired() || $ti->getValue()) {
532 $ti->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
533 }
534 $a_form->addItem($ti);
535 }
536 break;
537
538 case "sel_country":
540 include_once("./Services/Form/classes/class.ilCountrySelectInputGUI.php");
541 $ci = new ilCountrySelectInputGUI($lng->txt($lv), "usr_" . $f);
542 if ($a_user) {
543 $ci->setValue($a_user->$m());
544 }
545 $ci->setRequired($ilSetting->get("require_" . $f));
546 if (!$ci->getRequired() || $ci->getValue()) {
547 $ci->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
548 }
549 $a_form->addItem($ci);
550 }
551 break;
552
553 case "birthday":
555 $bi = new ilBirthdayInputGUI($lng->txt($lv), "usr_" . $f);
556 include_once "./Services/Calendar/classes/class.ilDateTime.php";
557 $date = null;
558 if ($a_user && strlen($a_user->$m())) {
559 $date = new ilDateTime($a_user->$m(), IL_CAL_DATE);
560 $bi->setDate($date);
561 }
562 $bi->setRequired($ilSetting->get("require_" . $f));
563 if (!$bi->getRequired() || $date) {
564 $bi->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
565 }
566 $a_form->addItem($bi);
567 }
568 break;
569
570 case "radio":
572 $rg = new ilRadioGroupInputGUI($lng->txt($lv), "usr_" . $f);
573 if ($a_user) {
574 $rg->setValue($a_user->$m());
575 }
576 foreach ($p["values"] as $k => $v) {
577 $op = new ilRadioOption($lng->txt($v), $k);
578 $rg->addOption($op);
579 }
580 $rg->setRequired($ilSetting->get("require_" . $f));
581 if (!$rg->getRequired() || $rg->getValue()) {
582 $rg->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
583 }
584 $a_form->addItem($rg);
585 }
586 break;
587
588 case "picture":
589 if (ilUserProfile::userSettingVisible("upload") && $a_user) {
590 $ii = new ilImageFileInputGUI($lng->txt("personal_picture"), "userfile");
591 $ii->setDisabled($ilSetting->get("usr_settings_disable_upload"));
592
593 $upload = $a_form->getFileUpload("userfile");
594 if ($upload["name"]) {
595 $ii->setPending($upload["name"]);
596 } else {
597 $im = ilObjUser::_getPersonalPicturePath(
598 $a_user->getId(),
599 "small",
600 true,
601 true
602 );
603 if ($im != "") {
604 $ii->setImage($im);
605 $ii->setAlt($lng->txt("personal_picture"));
606 }
607 }
608
609 $a_form->addItem($ii);
610 }
611 break;
612
613 case "roles":
614 if (self::$mode == self::MODE_DESKTOP) {
616 $global_roles = $rbacreview->getGlobalRoles();
617 foreach ($global_roles as $role_id) {
618 if (in_array($role_id, $rbacreview->assignedRoles($a_user->getId()))) {
619 $roleObj = $ilias->obj_factory->getInstanceByObjId($role_id);
620 $role_names .= $roleObj->getTitle() . ", ";
621 unset($roleObj);
622 }
623 }
624 $dr = new ilNonEditableValueGUI($lng->txt("default_roles"), "ne_dr");
625 $dr->setValue(substr($role_names, 0, -2));
626 $a_form->addItem($dr);
627 }
628 } elseif (self::$mode == self::MODE_REGISTRATION) {
629 if ($registration_settings->roleSelectionEnabled()) {
630 include_once("./Services/AccessControl/classes/class.ilObjRole.php");
631 $options = array();
632 foreach (ilObjRole::_lookupRegisterAllowed() as $role) {
633 $options[$role["id"]] = $role["title"];
634 }
635 // registration form validation will take care of missing field / value
636 if ($options) {
637 if (sizeof($options) > 1) {
638 $ta = new ilSelectInputGUI($lng->txt('default_role'), "usr_" . $f);
639 $ta->setOptions($options);
640 $ta->setRequired($ilSetting->get("require_" . $f));
641 if (!$ta->getRequired()) {
642 $ta->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
643 }
644 }
645 // no need for select if only 1 option
646 else {
647 $ta = new ilHiddenInputGUI("usr_" . $f);
648 $ta->setValue(array_shift(array_keys($options)));
649 }
650 $a_form->addItem($ta);
651 }
652 }
653 }
654 break;
655
656 case "email":
658 $em = new ilEMailInputGUI($lng->txt($lv), "usr_" . $f);
659 if ($a_user) {
660 $em->setValue($a_user->$m());
661 }
662 $em->setRequired($ilSetting->get("require_" . $f));
663 if (!$em->getRequired() || $em->getValue()) {
664 $em->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
665 }
666 if (self::MODE_REGISTRATION == self::$mode) {
667 $em->setRetype(true);
668 }
669 $a_form->addItem($em);
670 }
671 break;
672 case "second_email":
674 $em = new ilEMailInputGUI($lng->txt($lv), "usr_" . $f);
675 if ($a_user) {
676 $em->setValue($a_user->$m());
677 }
678 $em->setRequired($ilSetting->get("require_" . $f));
679 if (!$em->getRequired() || $em->getValue()) {
680 $em->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
681 }
682 if (self::MODE_REGISTRATION == self::$mode) {
683 $em->setRetype(true);
684 }
685 $a_form->addItem($em);
686 }
687 break;
688 case "textarea":
690 $ta = new ilTextAreaInputGUI($lng->txt($lv), "usr_" . $f);
691 if ($a_user) {
692 $ta->setValue($a_user->$m());
693 }
694 $ta->setRows($p["rows"]);
695 $ta->setCols($p["cols"]);
696 $ta->setRequired($ilSetting->get("require_" . $f));
697 if (!$ta->getRequired() || $ta->getValue()) {
698 $ta->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
699 }
700 $a_form->addItem($ta);
701 }
702 break;
703
704 case "password":
705 if (self::$mode == self::MODE_REGISTRATION) {
706 if (!$registration_settings->passwordGenerationEnabled()) {
707 $ta = new ilPasswordInputGUI($lng->txt($lv), "usr_" . $f);
708 $ta->setUseStripSlashes(false);
709 $ta->setRequired(true);
711 // $ta->setDisabled($ilSetting->get("usr_settings_disable_".$f));
712 } else {
713 $ta = new ilNonEditableValueGUI($lng->txt($lv));
714 $ta->setValue($lng->txt("reg_passwd_via_mail"));
715 }
716 $a_form->addItem($ta);
717 }
718 break;
719
720 case "language":
722 $ta = new ilSelectInputGUI($lng->txt($lv), "usr_" . $f);
723 if ($a_user) {
724 $ta->setValue($a_user->$m());
725 }
726 $options = array();
727 $lng->loadLanguageModule("meta");
728 foreach ($lng->getInstalledLanguages() as $lang_key) {
729 $options[$lang_key] = $lng->txt("meta_l_" . $lang_key);
730 }
731 asort($options); // #9728
732 $ta->setOptions($options);
733 $ta->setRequired($ilSetting->get("require_" . $f));
734 if (!$ta->getRequired() || $ta->getValue()) {
735 $ta->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
736 }
737 $a_form->addItem($ta);
738 }
739 break;
740
741 case "multitext":
743 $ti = new ilTextInputGUI($lng->txt($lv), "usr_" . $f);
744 $ti->setMulti(true);
745 if ($a_user) {
746 $ti->setValue($a_user->$m());
747 }
748 $ti->setMaxLength($p["maxlength"]);
749 $ti->setSize($p["size"]);
750 $ti->setRequired($ilSetting->get("require_" . $f));
751 if (!$ti->getRequired() || $ti->getValue()) {
752 $ti->setDisabled($ilSetting->get("usr_settings_disable_" . $f));
753 }
754 if ($this->ajax_href) {
755 // add field to ajax call
756 $ti->setDataSource($this->ajax_href . "&f=" . $f);
757 }
758 $a_form->addItem($ti);
759 }
760 break;
761 case "noneditable":
762 if (self::$mode == self::MODE_DESKTOP && ilUserProfile::userSettingVisible($f)) {
763 $ne = new ilNonEditableValueGUI($lng->txt($lv));
764 $ne->setValue($a_user->$m());
765 $a_form->addItem($ne);
766 }
767 break;
768 }
769 }
770
771 // append custom fields as "other"
772 if (is_array($custom_fields) && !$custom_fields_done) {
773 // add "other" subheader
774 if ($current_group != "other") {
775 $sh = new ilFormSectionHeaderGUI();
776 $sh->setTitle($lng->txt("other"));
777 $a_form->addItem($sh);
778 }
779 foreach ($custom_fields as $custom_field) {
780 $a_form->addItem($custom_field);
781 }
782 }
783 }
784
785 public function setAjaxCallback($a_href)
786 {
787 $this->ajax_href = $a_href;
788 }
789
793 public static function userSettingVisible($a_setting)
794 {
795 global $ilSetting;
796
797 if (self::$mode == self::MODE_DESKTOP) {
798 return ($ilSetting->get("usr_settings_hide_" . $a_setting) != 1);
799 } else {
800 if (isset(self::$user_field[$a_setting]["visib_reg_hide"]) && self::$user_field[$a_setting]["visib_reg_hide"] === true) {
801 return true;
802 }
803 return ($ilSetting->get("usr_settings_visib_reg_" . $a_setting, "1") || $ilSetting->get("require_" . $a_setting, "0"));
804 }
805 }
806
807 public static function setMode($mode)
808 {
809 global $lng;
810
811 if (in_array($mode, array(self::MODE_DESKTOP, self::MODE_REGISTRATION))) {
812 self::$mode = $mode;
813 return true;
814 }
815 return false;
816 }
817
826 public static function isProfileIncomplete($a_user, $a_include_udf = true, $a_personal_data_only = true)
827 {
828 global $ilSetting;
829
830 // standard fields
831 foreach (self::$user_field as $field => $definition) {
832 // only if visible in personal data
833 if ($a_personal_data_only && $ilSetting->get("usr_settings_hide_" . $field)) {
834 continue;
835 }
836
837 if ($ilSetting->get("require_" . $field) && $definition["method"]) {
838 $value = $a_user->{$definition["method"]}();
839 if ($value == "") {
840 return true;
841 }
842 }
843 }
844
845 // custom fields
846 if ($a_include_udf) {
847 $user_defined_data = $a_user->getUserDefinedData();
848
849 include_once './Services/User/classes/class.ilUserDefinedFields.php';
850 $user_defined_fields = ilUserDefinedFields::_getInstance();
851 foreach ($user_defined_fields->getRequiredDefinitions() as $field => $definition) {
852 // only if visible in personal data
853 if ($a_personal_data_only && !$definition["visible"]) {
854 continue;
855 }
856
857 if (!$user_defined_data["f_" . $field]) {
858 ilLoggerFactory::getLogger('user')->info('Profile is incomplete due to missing required udf.');
859 return true;
860 }
861 }
862 }
863
864 return false;
865 }
866
877 protected static function isEditableByUser($setting)
878 {
884 global $ilSetting;
885
886 // Not visible in personal data or not changeable
887 if ($ilSetting->get('usr_settings_hide_' . $setting) == 1 ||
888 $ilSetting->get('usr_settings_disable_' . $setting) == 1) {
889 // User has no chance to edit this field
890 return false;
891 }
892
893 return true;
894 }
895
905 public static function getIgnorableRequiredSettings()
906 {
912 global $ilSetting;
913
914 $ignorableSettings = array();
915
916 foreach (self::$user_field as $field => $definition) {
917 // !!!username and password must not be ignored!!!
918 if ('username' == $field ||
919 'password' == $field) {
920 continue;
921 }
922
923 // Field is not required -> continue
924 if (!$ilSetting->get('require_' . $field)) {
925 continue;
926 }
927
928 if (self::isEditableByUser($field)) {
929 $ignorableSettings[] = $field;
930 }
931 }
932
933 return $ignorableSettings;
934 }
935}
if(!isset( $_REQUEST[ 'ReturnTo'])) if(!isset($_REQUEST['AuthId'])) $options
Definition: as_login.php:20
An exception for terminatinating execution or to throw for unit testing.
const IL_CAL_DATE
This class represents a text property in a property form.
This class represents a selection list property in a property form.
@classDescription Date and time handling
This class represents a email property in a property form.
This class represents a section header in a property form.
This class represents a hidden form property in a property form.
This class represents an image file property in a property form.
static getLogger($a_component_id)
Get component logger.
This class represents a non editable value in a property form.
static _lookupRegisterAllowed()
get all roles that are activated in user registration
This class represents a password property in a property form.
This class represents a property in a property form.
This class represents an option in a radio group.
Class ilObjAuthSettingsGUI.
This class represents a selection list property in a property form.
This class represents a text area property in a property form.
This class represents a text property in a property form.
static _getInstance()
Get instance.
Class ilUserProfile.
addStandardFieldsToForm($a_form, $a_user=null, array $custom_fields=null)
Add standard fields to form.
__construct()
Constructor.
getStandardFields()
Get standard user fields array.
getLocalUserAdministrationFields()
Get visible fields in local user administration.
skipField($a_field)
Skip a field.
static setMode($mode)
skipGroup($a_group)
Skip a group.
static isEditableByUser($setting)
Returns whether a profile setting is editable by an user in the profile gui.
static userSettingVisible($a_setting)
Checks whether user setting is visible.
static getIgnorableRequiredSettings()
Returns an array of all ignorable profiel fields.
static isProfileIncomplete($a_user, $a_include_udf=true, $a_personal_data_only=true)
Check if all required personal data fields are set.
static getPasswordRequirementsInfo()
infotext for ilPasswordInputGUI setInfo()
$info
Definition: index.php:5
global $lng
Definition: privfeed.php:17
global $ilSetting
Definition: privfeed.php:17