19 declare(strict_types=1);
43 $this->
lng = $DIC->language();
45 $this->obj_type = $a_type;
55 if (!isset(self::$instances[$a_type])) {
56 self::$instances[$a_type] =
new self($a_type);
58 return self::$instances[$a_type];
71 return array_key_exists($a_field_name, $this->possible_fields);
89 foreach ($this->possible_fields as $field => $exportable) {
104 $user = $DIC->user();
114 $fields[
'login'][
'txt'] = $this->
lng->txt(
'login');
115 $fields[
'login'][
'default'] = 1;
120 $caption = ($field ==
"title")
123 $fields[$field][
'txt'] = $this->
lng->txt($caption);
124 $fields[$field][
'default'] = 0;
130 $this->
lng->loadLanguageModule(
'dateplaner');
131 $fields[
'consultation_hour'][
'txt'] = $this->
lng->txt(
'cal_ch_field_ch');
132 $fields[
'consultation_hour'][
'default'] = 0;
149 foreach ($udf as $field_id => $field) {
150 $fields[
'udf_' . $field_id][
'txt'] = $field[
'field_name'];
151 $fields[
'udf_' . $field_id][
'default'] = 0;
157 foreach ($cdf as $def) {
158 $fields[
'odf_' . $def->getId()][
'txt'] = $def->getName();
159 $fields[
'odf_' . $def->getId()][
'default'] = 0;
163 $fields[
'odf_last_update'][
'txt'] = $this->
lng->txt($this->
getType() .
'_cdf_tbl_last_edit');
164 $fields[
'odf_last_update'][
'default'] = 0;
178 $fields[] = $this->
lng->txt($field);
180 return implode(
'<br />', $fields);
189 $profile->skipGroup(
'settings');
191 $field_prefix =
null;
192 $field_part_limit = 5;
194 $export_fix_val =
null;
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_']
202 if (array_key_exists($type, $type_vals)) {
203 list($export_hide, $export_fix_val, $field_prefix) = $type_vals[$type];
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];
211 $this->possible_fields[$key] = 0;
216 $settings_all = $this->
settings->getAll();
217 foreach ($settings_all as $key => $value) {
218 if ($field_prefix && stristr($key, $field_prefix) and $value) {
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;
234 $start_order = array(
"lastname" => array(),
"firstname" => array(),
"username" => array());
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]);
241 unset($start_order[$key]);
245 if (count($start_order) > 0) {
246 $this->possible_fields = array_merge($start_order, $this->possible_fields);
static hasObjectBookingEntries(int $a_obj_id, int $a_usr_id)
Check if object has assigned consultation hour appointments.
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.
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.