ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilExportFieldsInfo.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  private static array $instances = [];
29 
31  private ilLanguage $lng;
32  private string $obj_type = '';
33  private array $possible_fields = array();
34 
39  private function __construct(string $a_type)
40  {
41  global $DIC;
42 
43  $this->lng = $DIC->language();
44  $this->settings = $DIC->settings();
45  $this->obj_type = $a_type;
46 
47  $this->read();
48  }
49 
53  public static function _getInstanceByType(string $a_type): ilExportFieldsInfo
54  {
55  if (!isset(self::$instances[$a_type])) {
56  self::$instances[$a_type] = new self($a_type);
57  }
58  return self::$instances[$a_type];
59  }
60 
61  public function getType(): string
62  {
63  return $this->obj_type;
64  }
65 
69  public function isExportable($a_field_name): bool
70  {
71  return array_key_exists($a_field_name, $this->possible_fields);
72  }
73 
78  public function getFieldsInfo(): array
79  {
81  }
82 
86  public function getExportableFields(): array
87  {
88  $fields = [];
89  foreach ($this->possible_fields as $field => $exportable) {
90  if ($exportable) {
91  $fields[] = $field;
92  }
93  }
94  return $fields;
95  }
96 
100  public function getSelectableFieldsInfo(?int $a_obj_id = null): array
101  {
102  global $DIC;
103 
104  $user = $DIC->user();
105 
106  $fields = [];
107  foreach ($this->getExportableFields() as $field) {
108  switch ($field) {
109  case 'lastname':
110  case 'firstname':
111  break;
112 
113  case 'username':
114  $fields['login']['txt'] = $this->lng->txt('login');
115  $fields['login']['default'] = 1;
116  break;
117 
118  default:
119  // #18795
120  $caption = ($field == "title")
121  ? "person_title"
122  : $field;
123  $fields[$field]['txt'] = $this->lng->txt($caption);
124  $fields[$field]['default'] = 0;
125  break;
126  }
127  }
128 
129  if ($a_obj_id && ilBookingEntry::hasObjectBookingEntries($a_obj_id, $user->getId())) {
130  $this->lng->loadLanguageModule('dateplaner');
131  $fields['consultation_hour']['txt'] = $this->lng->txt('cal_ch_field_ch');
132  $fields['consultation_hour']['default'] = 0;
133  }
134 
135  $udf = [];
136  switch ($this->getType()) {
137  case 'crs':
138  $udf = ilUserDefinedFields::_getInstance()->getCourseExportableFields();
139  break;
140  case 'grp':
141  $udf = ilUserDefinedFields::_getInstance()->getGroupExportableFields();
142  break;
143  case 'prg':
144  $udf = ilUserDefinedFields::_getInstance()->getProgrammeExportableFields();
145  break;
146  }
147 
148  if ($udf !== []) {
149  foreach ($udf as $field_id => $field) {
150  $fields['udf_' . $field_id]['txt'] = $field['field_name'];
151  $fields['udf_' . $field_id]['default'] = 0;
152  }
153  }
154 
155  if ($a_obj_id) {
157  foreach ($cdf as $def) {
158  $fields['odf_' . $def->getId()]['txt'] = $def->getName();
159  $fields['odf_' . $def->getId()]['default'] = 0;
160  }
161  if (count($cdf)) {
162  // add last edit
163  $fields['odf_last_update']['txt'] = $this->lng->txt($this->getType() . '_cdf_tbl_last_edit');
164  $fields['odf_last_update']['default'] = 0;
165  }
166  }
167  return $fields;
168  }
169 
174  public function exportableFieldsToInfoString(): string
175  {
176  $fields = [];
177  foreach ($this->getExportableFields() as $field) {
178  $fields[] = $this->lng->txt($field);
179  }
180  return implode('<br />', $fields);
181  }
182 
186  private function read(): void
187  {
188  $profile = new ilUserProfile();
189  $profile->skipGroup('settings');
190 
191  $field_prefix = null;
192  $field_part_limit = 5;
193  $export_hide = null;
194  $export_fix_val = null;
195  $type = $this->getType();
196 
197  $type_vals = [
198  'crs' => ['course_export_hide', 'course_export_fix_value', 'usr_settings_course_export_'],
199  'grp' => ['group_export_hide', 'group_export_fix_value', 'usr_settings_group_export_'],
200  'prg' => ['prg_export_hide', 'prg_export_fix_value', 'usr_settings_prg_export_']
201  ];
202  if (array_key_exists($type, $type_vals)) {
203  list($export_hide, $export_fix_val, $field_prefix) = $type_vals[$type];
204  }
205 
206  foreach ($profile->getStandardFields() as $key => $data) {
207  if (!array_key_exists($export_hide, $data) || !$data[$export_hide]) {
208  if (isset($data[$export_fix_val]) and $data[$export_fix_val]) {
209  $this->possible_fields[$key] = $data[$export_fix_val];
210  } else {
211  $this->possible_fields[$key] = 0;
212  }
213  }
214  }
215 
216  $settings_all = $this->settings->getAll();
217  foreach ($settings_all as $key => $value) {
218  if ($field_prefix && stristr($key, $field_prefix) and $value) {
219  // added limit for mantis 11096
220  $field_parts = explode('_', $key, $field_part_limit);
221  $field = $field_parts[count($field_parts) - 1];
222  if (array_key_exists($field, $this->possible_fields)) {
223  $this->possible_fields[$field] = 1;
224  }
225  }
226  }
227  }
228 
232  public function sortExportFields(): void
233  {
234  $start_order = array("lastname" => array(), "firstname" => array(), "username" => array());
235 
236  foreach ($start_order as $key => $value) {
237  if (isset($this->possible_fields[$key])) {
238  $start_order[$key] = $this->possible_fields[$key];
239  unset($this->possible_fields[$key]);
240  } else {
241  unset($start_order[$key]);
242  }
243  }
244 
245  if (count($start_order) > 0) {
246  $this->possible_fields = array_merge($start_order, $this->possible_fields);
247  }
248  }
249 }
static hasObjectBookingEntries(int $a_obj_id, int $a_usr_id)
Check if object has assigned consultation hour appointments.
Class ilUserProfile.
getSelectableFieldsInfo(?int $a_obj_id=null)
Get selectable fields.
static _getFields(int $a_container_id, $a_sort=self::IL_CDF_SORT_NAME)
Get all fields of a container.
exportableFieldsToInfoString()
Get exportable fields as info string.
getFieldsInfo()
Get informations (exportable) about user data profile fields public.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
sortExportFields()
sort Exports fields User for Name Presentation Guideline
isExportable($a_field_name)
Check if field is exportable.
global $DIC
Definition: shib_login.php:22
static _getInstanceByType(string $a_type)
Get Singleton Instance.
getExportableFields()
Get Exportable Fields.
__construct(string $a_type)
Private Singleton Constructor.
read()
Read info about exportable fields.