ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCustomUserFieldSettingsTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  private bool $confirm_change = false;
34  private array $perm_map;
36 
37  public function __construct(
38  object $a_parent_obj,
39  string $a_parent_cmd,
40  ilClaimingPermissionHelper $a_permissions
41  ) {
42  global $DIC;
43 
44  $ilCtrl = $DIC['ilCtrl'];
45  $lng = $DIC['lng'];
46 
47  $this->permissions = $a_permissions;
49 
50  parent::__construct($a_parent_obj, $a_parent_cmd);
51  $this->setTitle($lng->txt('user_defined_list'));
52  $this->main_tpl->setOnScreenMessage('info', $lng->txt('usr_settings_explanation_profile'));
53  $this->setLimit(9999);
54 
55  $this->addColumn('', '', '1');
56  $this->addColumn($this->lng->txt('user_field'), '');
57  $this->addColumn($this->lng->txt('access'), '');
58  $this->addColumn($this->lng->txt('export') . ' / ' . $this->lng->txt('search') .
59  ' / ' . $this->lng->txt('certificate'), '');
60  $this->addColumn($this->lng->txt('actions'), '');
61 
62  $this->setEnableHeader(true);
63  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
64  $this->setRowTemplate('tpl.std_fields_settings_row.html', 'components/ILIAS/User');
65  $this->disable('footer');
66  $this->setEnableTitle(true);
67 
68  $user_field_definitions = ilUserDefinedFields::_getInstance();
69  $fds = $user_field_definitions->getDefinitions();
70 
71  foreach ($fds as $k => $f) {
72  $fds[$k]['key'] = $k;
73  }
74  $this->setData($fds);
75  $this->addCommandButton('updateFields', $lng->txt('save'));
76  $this->addMultiCommand('askDeleteField', $lng->txt('delete'));
77  $this->request = new UserGUIRequest(
78  $DIC->http(),
79  $DIC->refinery()
80  );
81  }
82 
87  protected function fillRow(array $a_set): void
88  {
89  $field = $a_set['field_id'];
90 
91  $props = [
92  'visible' => 'user_visible_in_profile',
93  'changeable' => 'changeable',
94  'searchable' => 'header_searchable',
95  'required' => 'required_field',
96  'export' => 'export',
97  'course_export' => 'course_export',
98  'group_export' => 'group_export',
99  'prg_export' => 'prg_export',
100  'visib_reg' => 'header_visible_registration',
101  'visib_lua' => 'usr_settings_visib_lua',
102  'changeable_lua' => 'usr_settings_changeable_lua',
103  'certificate' => 'certificate'
104  ];
105 
106  $perms = $this->permissions->hasPermissions(
108  (string) $field,
109  [
111  [
114  ],
115  [
118  ],
119  [
122  ],
123  [
126  ],
127  [
130  ],
131  [
134  ],
135  [
138  ],
139  [
142  ],
143  [
146  ],
147  [
150  ],
151  [
154  ],
155  [
158  ]
159  ]
160  );
161 
162  $req_checked = $this->request->getChecked();
163 
164  foreach ($props as $prop => $lv) {
165  $up_prop = strtoupper($prop);
166 
167  if ($a_set['field_type'] != UDF_TYPE_WYSIWYG ||
168  ($prop != 'searchable')) {
169  $this->tpl->setCurrentBlock($prop);
170  $this->tpl->setVariable(
171  'HEADER_' . $up_prop,
172  $this->lng->txt($lv)
173  );
174  $this->tpl->setVariable('PROFILE_OPTION_' . $up_prop, $prop . '_' . $field);
175 
176  // determine checked status
177  $checked = false;
178  if ($a_set[$prop]) {
179  $checked = true;
180  }
181  if ($this->confirm_change === 1) {
182  $checked = $req_checked[$prop . '_' . $field] ?? false;
183  }
184 
185  if ($checked) {
186  $this->tpl->setVariable('CHECKED_' . $up_prop, ' checked=\"checked\"');
187  }
188 
189  if (!$perms[ilUDFPermissionHelper::ACTION_FIELD_EDIT_ACCESS][$this->perm_map[$prop]]) {
190  $this->tpl->setVariable('DISABLE_' . $up_prop, ' disabled=\"disabled\"');
191  }
192 
193  $this->tpl->parseCurrentBlock();
194  }
195  }
196 
197  // actions
199  $this->ctrl->setParameter($this->parent_obj, 'field_id', $a_set['field_id']);
200  $this->tpl->setCurrentBlock('action');
201  $this->tpl->setVariable(
202  'HREF_CMD',
203  $this->ctrl->getLinkTarget($this->parent_obj, 'edit')
204  );
205  $this->tpl->setVariable('TXT_CMD', $this->lng->txt('edit'));
206  $this->tpl->parseCurrentBlock();
207  }
208 
209  // field name
210  $this->tpl->setCurrentBlock('cb');
211  $this->tpl->setVariable('FIELD_ID', $a_set['field_id']);
212  $this->tpl->parseCurrentBlock();
213  $this->tpl->setVariable('TXT_FIELD', $a_set['field_name']);
214  }
215 
216  public function setConfirmChange(): void
217  {
218  $this->confirm_change = true;
219  }
220 }
setData(array $a_data)
__construct(object $a_parent_obj, string $a_parent_cmd, ilClaimingPermissionHelper $a_permissions)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setEnableTitle(bool $a_enabletitle)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
ilLanguage $lng
TableGUI class for custom defined user fields.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
const UDF_TYPE_WYSIWYG
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
addMultiCommand(string $a_cmd, string $a_text)
setEnableHeader(bool $a_enableheader)