19 declare(strict_types=1);
78 public function __construct(
int $a_context,
int $a_ref_id, ?
string $a_obj_type = null, $a_sub_type = null)
82 $this->
ctrl = $DIC->ctrl();
83 $this->
lng = $DIC->language();
84 $this->
lng->loadLanguageModule(
'meta');
85 $this->tpl = $DIC->ui()->mainTemplate();
86 $this->tabs_gui = $DIC->tabs();
89 $this->
toolbar = $DIC->toolbar();
90 $this->ui_factory = $DIC->ui()->factory();
91 $this->ui_renderer = $DIC->ui()->renderer();
92 $this->request = $DIC->http()->request();
93 $this->
http = $DIC->http();
96 $this->
logger = $DIC->logger()->amet();
98 $this->context = $a_context;
112 if ($this->
http->wrapper()->query()->has(
'record_id')) {
113 return $this->
http->wrapper()->query()->retrieve(
123 if ($this->
http->wrapper()->post()->has(
'record_id')) {
124 return SplFixedArray::fromArray(
125 $this->
http->wrapper()->post()->retrieve(
127 $this->
refinery->kindlyTo()->listOf(
133 return new SplFixedArray(0);
138 if ($this->
http->wrapper()->query()->has(
'field_id')) {
139 return $this->
http->wrapper()->query()->retrieve(
149 if ($this->
http->wrapper()->post()->has(
'field_id')) {
150 return SplFixedArray::fromArray(
151 $this->
http->wrapper()->post()->retrieve(
153 $this->
refinery->kindlyTo()->listOf(
159 return new SplFixedArray(0);
164 if ($this->
http->wrapper()->post()->has(
'file_id')) {
165 return SplFixedArray::fromArray(
166 $this->
http->wrapper()->post()->retrieve(
168 $this->
refinery->kindlyTo()->dictOf(
174 return new SplFixedArray(0);
179 if ($this->
http->wrapper()->query()->has(
'ftype')) {
180 return $this->
http->wrapper()->query()->retrieve(
190 if ($this->
http->wrapper()->post()->has(
'ftype')) {
191 return $this->
http->wrapper()->post()->retrieve(
201 if ($this->
http->wrapper()->query()->has(
'oid')) {
202 return $this->
http->wrapper()->query()->retrieve(
204 $this->
refinery->kindlyTo()->string()
215 if ($this->
http->wrapper()->post()->has(
'position')) {
216 return $this->
http->wrapper()->post()->retrieve(
218 $this->
refinery->kindlyTo()->dictOf(
220 $this->refinery->kindlyTo()->float(),
233 $nav = $this->
http->wrapper()->post()->retrieve(
235 $this->
refinery->kindlyTo()->string()
237 return (
int) explode(
':', $nav)[2];
259 if ($context === self::CONTEXT_ADMINISTRATION) {
261 $this->obj_id = null;
262 $this->obj_type = null;
263 $this->sub_type = null;
274 $next_class = $this->
ctrl->getNextClass($this);
275 $cmd = $this->
ctrl->getCmd();
276 switch ($next_class) {
278 case strtolower(ilAdvancedMDRecordTranslationGUI::class):
281 $int_gui = new \ilAdvancedMDRecordTranslationGUI($record);
282 $this->
ctrl->forwardCommand($int_gui);
285 case "ilpropertyformgui":
288 $this->record->getRecordId() > 0 ?
'edit' :
'create' 295 $cmd =
'showRecords';
305 $ilToolbar = $DIC[
'ilToolbar'];
306 $ilAccess = $DIC[
'ilAccess'];
312 (
string) $this->ref_id,
321 $button->setCaption(
"add");
322 $button->setUrl($this->
ctrl->getLinkTarget($this,
"createRecord"));
323 $ilToolbar->addButtonInstance($button);
326 $ilToolbar->addSeparator();
332 $button->setCaption(
"import");
333 $button->setUrl($this->
ctrl->getLinkTarget($this,
"importRecords"));
334 $ilToolbar->addButtonInstance($button);
337 $obj_type_context = ($this->obj_id > 0)
346 $table_gui->setTitle($this->
lng->txt(
"md_record_list_table"));
351 $table_gui->addMultiCommand(
"exportRecords", $this->
lng->txt(
'export'));
352 $table_gui->setSelectAllCheckbox(
"record_id");
354 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
355 $table_gui->addMultiCommand(
"confirmDeleteRecords", $this->
lng->txt(
"delete"));
356 $table_gui->addCommandButton(
"updateRecords", $this->
lng->txt(
"save"));
359 $DIC->ui()->mainTemplate()->setContent($table_gui->getHTML());
367 $this->tabs_gui->setSubTabActive(
'md_adv_presentation');
368 $this->tpl->setContent($this->
form->getHTML());
382 $ilAccess = $DIC[
'ilAccess'];
384 if (!$ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
385 $this->
ctrl->redirect($this,
"showPresentation");
390 $this->
ctrl->redirect($this,
'showPresentation');
394 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'),
true);
395 $this->
ctrl->redirect($this,
"showPresentation");
401 if (in_array($obj_type, $this->permissions->getAllowedObjectTypes())) {
416 $sub->enableDescription((
bool) $form->
getInput(
'enabled_desc_' . $obj_type));
420 $sub->enableFieldNames((
bool) $form->
getInput(
'enabled_field_names_' . $obj_type));
424 $definitions = $sub->sortDefinitions($definitions);
429 foreach ($definitions as $def) {
430 $field_id = $def->getFieldId();
431 $old_sub[$field_id] = array(
432 "active" => $sub->isSubstituted($field_id),
434 "bold" => $sub->isBold($field_id),
435 "newline" => $sub->hasNewline($field_id)
439 $sub->resetSubstitutions();
442 foreach ($definitions as $def) {
443 $field_id = $def->getFieldId();
444 $old = $old_sub[$field_id];
447 if ($perm_def[
"show"] ??
false) {
448 $active = (bool) $form->
getInput(
'show_' . $obj_type .
'_' . $field_id);
450 $active = $old[
"active"] ??
false;
453 $new_sub[$field_id] = $old;
455 $new_sub[$field_id][
'pos'] = (
int) $form->
getInput(
'position_' . $obj_type .
'_' . $field_id);
457 if ($perm_def[
"bold"] ??
false) {
458 $new_sub[$field_id][
'bold'] = (bool) $form->
getInput(
'bold_' . $obj_type .
'_' . $field_id);
460 if ($perm_def[
"newline"] ??
false) {
461 $new_sub[$field_id][
'newline'] = (bool) $form->
getInput(
'newline_' . $obj_type .
'_' . $field_id);
466 if (
sizeof($new_sub)) {
468 foreach ($new_sub as $field_id => $field) {
469 $sub->appendSubstitution($field_id, (
bool) $field[
"bold"], (
bool) $field[
"newline"]);
475 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
476 $this->
ctrl->redirect($this,
"showPresentation");
486 if (!count($record_ids)) {
487 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
494 foreach ($record_ids as $record_id) {
505 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_perm_copy') .
" " . implode(
", ", $fail),
true);
506 $this->
ctrl->redirect($this,
"showRecords");
510 $xml_writer->write();
513 $this->context === self::CONTEXT_ADMINISTRATION ? null : $this->obj_id
515 $export_files->create($xml_writer->xmlDumpMem());
517 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'md_adv_records_exported'));
527 $this->tabs_gui->setSubTabActive(
'md_adv_file_list');
530 $this->context === self::CONTEXT_ADMINISTRATION ? null : $this->obj_id
532 $file_data = $files->readFilesInfo();
535 $table_gui->setTitle($this->
lng->txt(
"md_record_export_table"));
536 $table_gui->parseFiles($file_data);
537 $table_gui->addMultiCommand(
"downloadFile", $this->
lng->txt(
'download'));
539 if (
$GLOBALS[
'DIC']->
access()->checkAccess(
'write',
'', $this->ref_id)) {
540 $table_gui->addMultiCommand(
"confirmDeleteFiles", $this->
lng->txt(
"delete"));
542 $table_gui->setSelectAllCheckbox(
"file_id");
544 $this->tpl->setContent($table_gui->getHTML());
555 if (count($file_ids) !== 1) {
556 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'md_adv_select_one_file'));
561 $this->context === self::CONTEXT_ADMINISTRATION ? null : $this->obj_id
563 $abs_path = $files->getAbsolutePathByFileId($file_ids[0]);
574 if (count($file_ids) !== 1) {
575 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
581 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
"deleteFiles"));
582 $c_gui->setHeaderText($this->
lng->txt(
"md_adv_delete_files_sure"));
583 $c_gui->setCancel($this->
lng->txt(
"cancel"),
"showFiles");
584 $c_gui->setConfirm($this->
lng->txt(
"confirm"),
"deleteFiles");
587 $this->context === self::CONTEXT_ADMINISTRATION ? null : $this->obj_id
589 $file_data = $files->readFilesInfo();
592 foreach ($file_ids as $file_id) {
593 $info = $file_data[$file_id];
597 is_array($info[
'name'] ??
false) ? implode(
',', $info[
'name']) :
'No Records' 600 $this->tpl->setContent($c_gui->getHTML());
611 if (count($file_ids) === 0) {
612 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
617 if (!
$GLOBALS[
'DIC']->
access()->checkAccess(
'write',
'', $this->ref_id)) {
618 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
619 $GLOBALS[
'DIC']->ctrl()->redirect($this,
'showFiles');
623 $this->context === self::CONTEXT_ADMINISTRATION ? null : $this->obj_id
625 foreach ($file_ids as $file_id) {
626 $files->deleteByFileId((
int) $file_id);
628 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'md_adv_deleted_files'));
642 if (!count($record_ids)) {
643 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
651 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
"deleteRecords"));
652 $c_gui->setHeaderText($this->
lng->txt(
"md_adv_delete_record_sure"));
653 $c_gui->setCancel($this->
lng->txt(
"cancel"),
"showRecords");
654 $c_gui->setConfirm($this->
lng->txt(
"confirm"),
"deleteRecords");
657 foreach ($record_ids as $record_id) {
659 $c_gui->addItem(
"record_id[]", (
string) $record_id, $record->
getTitle() ?:
'No Title');
661 $this->tpl->setContent($c_gui->getHTML());
671 if (!count($record_ids)) {
672 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
679 foreach ($record_ids as $record_id) {
681 if ($this->context == self::CONTEXT_OBJECT) {
698 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_perm_delete') .
" " . implode(
", ", $fail),
true);
699 $this->
ctrl->redirect($this,
"showRecords");
702 foreach ($record_ids as $record_id) {
706 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'md_adv_deleted_records'),
true);
707 $this->
ctrl->redirect($this,
"showRecords");
719 asort($positions, SORT_NUMERIC);
721 $sorted_positions = [];
723 foreach ($positions as $record_id => $pos) {
724 $sorted_positions[(
int) $record_id] =
$i++;
726 $selected_global = array();
728 $post_active = (array) ($this->
http->request()->getParsedBody()[
'active'] ?? []);
729 if ($this->obj_id > 0) {
734 if (!array_key_exists($item[
'id'], $sorted_positions)) {
740 (
string) $item[
'id'],
754 $obj_types = array();
755 $post_object_types = (array) ($this->
http->request()->getParsedBody()[
'obj_types'] ?? []);
756 if (is_array($post_object_types[$record_obj->getRecordId()] ??
false)) {
757 foreach ($post_object_types[$record_obj->getRecordId()] as
$type => $status) {
759 $type = explode(
":", $type);
760 $obj_types[] = array(
763 "optional" => ((
int) $status == 2)
770 if (!$item[
'readonly']) {
772 $record_obj->setAssignedObjectTypes($obj_types);
774 foreach ($obj_types as $t) {
781 if ($this->context == self::CONTEXT_ADMINISTRATION) {
783 $record_obj->setActive(isset($post_active[$record_obj->getRecordId()]));
786 if (isset($sorted_positions[$record_obj->getRecordId()])) {
787 $record_obj->setGlobalPosition((
int) $sorted_positions[$record_obj->getRecordId()]);
789 $record_obj->update();
792 if ($item[
'readonly'] &&
794 ($post_active[$item[
'id']] ??
false)) {
795 $selected_global[] = $item[
'id'];
796 } elseif ($item[
'local']) {
798 $record_obj->setActive((
bool) ($post_active[$item[
'id']] ??
false));
799 $record_obj->update();
804 if ($this->context == self::CONTEXT_OBJECT) {
805 if (isset($sorted_positions[$item[
'id']])) {
808 $local_position = new \ilAdvancedMDRecordObjectOrdering(
813 $local_position->setPosition((
int) $sorted_positions[$item[
'id']]);
814 $local_position->save();
819 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
820 $this->
ctrl->redirect($this,
"showRecords");
826 if (!count($field_ids)) {
827 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
838 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
"deleteFields"));
839 $c_gui->setHeaderText($this->
lng->txt(
"md_adv_delete_fields_sure"));
840 $c_gui->setCancel($this->
lng->txt(
"cancel"),
"editFields");
841 $c_gui->setConfirm($this->
lng->txt(
"confirm"),
"deleteFields");
844 foreach ($field_ids as $field_id) {
846 $c_gui->addItem(
"field_id[]", (
string) $field_id, $field->getTitle() ?:
'No Title');
848 $this->tpl->setContent($c_gui->getHTML());
853 $this->
ctrl->saveParameter($this,
'record_id');
856 if (!count($field_ids)) {
857 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
864 foreach ($field_ids as $field_id) {
871 $fail[] = $field->getTitle();
875 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_perm_delete') .
" " . implode(
", ", $fail),
true);
876 $this->
ctrl->redirect($this,
"editFields");
879 foreach ($field_ids as $field_id) {
883 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'md_adv_deleted_fields'),
true);
884 $this->
ctrl->redirect($this,
"editFields");
891 $this->
ctrl->redirect($this,
'showRecords');
895 $this->tabs_gui->activateTab(self::TAB_RECORD_SETTINGS);
902 $this->tpl->setContent($this->
form->getHTML());
911 $this->
ctrl->redirect($this,
'showRecords');
913 $this->
ctrl->saveParameter($this,
'record_id');
921 (
string) $this->record->getRecordId(),
929 $filter_warn = array();
936 $options[
$type] = $this->
lng->txt($field->getTypeTitle());
938 if (!$field->isFilterSupported()) {
939 $filter_warn[] = $this->
lng->txt($field->getTypeTitle());
942 $types->setOptions($options);
944 if (count($this->
toolbar->getItems())) {
945 $this->
toolbar->addSeparator();
947 $this->
toolbar->addInputItem($types);
949 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this,
"createField"));
952 $button->setCaption(
"add");
953 $button->setCommand(
"createField");
954 $this->
toolbar->addButtonInstance($button);
958 if (
sizeof($filter_warn)) {
959 $this->tpl->setOnScreenMessage(
'info', sprintf($this->
lng->txt(
"md_adv_field_filter_warning"), implode(
", ", $filter_warn)));
964 $this->record->getRecordId(),
974 $this->record->getDefaultLanguage()
976 $table_gui->
setTitle($this->
lng->txt(
"md_adv_field_table"));
977 $table_gui->parseDefinitions($fields);
978 if (
sizeof($fields)) {
979 $table_gui->addCommandButton(
"updateFields", $this->
lng->txt(
"save"));
981 $table_gui->addCommandButton(
"showRecords", $this->
lng->txt(
'cancel'));
982 $table_gui->addMultiCommand(
"confirmDeleteFields", $this->
lng->txt(
"delete"));
983 $table_gui->setSelectAllCheckbox(
"field_id");
985 $this->tpl->setContent($table_gui->getHTML());
994 $this->
ctrl->saveParameter($this,
'record_id');
996 asort($positions, SORT_NUMERIC);
999 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
1008 (
string) $record_id,
1011 $positions_flipped = array_flip(array_keys($positions));
1012 foreach ($fields as $field) {
1013 $field->setPosition((
int) $positions_flipped[$field->getFieldId()]);
1018 foreach ($fields as $field) {
1021 (
string) $field->getFieldId(),
1025 $post_searchable = (array) ($this->
http->request()->getParsedBody()[
'searchable'] ?? []);
1026 $field->setSearchable((
bool) ($post_searchable[$field->getFieldId()] ??
false));
1031 $language = $this->request->getQueryParams()[
'mdlang'] ??
false;
1033 $this->
ctrl->setParameter($this,
'mdlang', $this->request->getQueryParams()[
'mdlang']);
1035 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1036 $this->
ctrl->redirect($this,
"editFields");
1048 $this->
ctrl->redirect($this,
'showRecords');
1055 if (!$this->
form->checkInput()) {
1056 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
1057 $this->
form->setValuesByPost();
1063 $this->record->update();
1066 $translations->updateTranslations(
1067 $this->active_language,
1068 $this->
form->getInput(
'title'),
1069 $this->
form->getInput(
'desc')
1072 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1073 $this->
ctrl->redirect($this,
'editRecord');
1088 $this->tpl->setContent($this->
form->getHTML());
1098 $this->tpl->setContent($this->import_form->getHTML());
1106 $this->tabs_gui->clearTargets();
1107 $this->tabs_gui->clearSubTabs();
1110 $this->tabs_gui->setBackTarget(
1111 $this->
lng->txt(
'md_adv_record_list'),
1112 $this->
ctrl->getLinkTarget($this,
'showRecords')
1115 if ($show_settings) {
1116 $this->tabs_gui->addTab(
1117 self::TAB_RECORD_SETTINGS,
1118 $this->
lng->txt(
'settings'),
1119 $this->
ctrl->getLinkTarget($this, self::TAB_RECORD_SETTINGS)
1121 $this->
ctrl->setParameterByClass(
1122 strtolower(\ilAdvancedMDRecordTranslationGUI::class),
1124 $this->record->getRecordId()
1126 $this->
lng->loadLanguageModule(
'obj');
1127 $this->tabs_gui->addTab(
1128 self::TAB_TRANSLATION,
1129 $this->
lng->txt(
'obj_multilinguality'),
1130 $this->
ctrl->getLinkTargetByClass(
1131 strtolower(\ilAdvancedMDRecordTranslationGUI::class),
1138 $this->tabs_gui->setBack2Target(
1139 $this->
lng->txt(
'md_adv_record_list'),
1140 $this->
ctrl->getLinkTarget($this,
'showRecords')
1142 $this->tabs_gui->setBackTarget(
1143 $this->
lng->txt(
'md_adv_field_list'),
1144 $this->
ctrl->getLinkTarget($this,
'editFields')
1151 if (is_object($this->import_form)) {
1156 $this->import_form->setMultipart(
true);
1157 $this->import_form->setFormAction($this->
ctrl->getFormAction($this));
1162 $file->setRequired(
true);
1163 $this->import_form->addItem($file);
1165 $this->import_form->setTitle($this->
lng->txt(
'md_adv_import_record'));
1166 $this->import_form->addCommandButton(
'importRecord', $this->
lng->txt(
'import'));
1167 $this->import_form->addCommandButton(
'showRecords', $this->
lng->txt(
'cancel'));
1173 if (!$this->import_form->checkInput()) {
1174 $this->import_form->setValuesByPost();
1180 if (!$create_time = $import_files->moveUploadedFile($_FILES[
'file'][
'tmp_name'])) {
1189 if ($this->context === self::CONTEXT_OBJECT) {
1190 $parser->
setContext($this->obj_id, $this->obj_type, $this->sub_type);
1195 $parser->startParsing();
1199 $parser->startParsing();
1200 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'md_adv_added_new_record'),
true);
1201 $this->
ctrl->redirect($this,
"showRecords");
1203 $this->tpl->setOnScreenMessage(
'failure', $exc->getMessage(),
true);
1204 $this->
ctrl->redirect($this,
"importRecords");
1208 $import_files->deleteFileByCreationDate($create_time);
1220 if (!$this->
form->checkInput()) {
1221 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
1227 if ($this->obj_type) {
1228 $sub_types = (!is_array($this->sub_type))
1231 $assigned_object_types = array_map(
function (
$sub_type) {
1238 $this->record->setAssignedObjectTypes($assigned_object_types);
1246 $translations->updateTranslations(
1248 $this->
form->getInput(
'title'),
1249 $this->
form->getInput(
'desc')
1251 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'md_adv_added_new_record'),
true);
1252 $this->
ctrl->redirect($this,
'showRecords');
1263 if (!$record_id || !$field_id) {
1267 $this->
ctrl->saveParameter($this,
'field_id');
1268 $this->
ctrl->saveParameter($this,
'record_id');
1280 if ($field_definition->hasComplexOptions()) {
1281 $table = $field_definition->getComplexOptionsOverview($this,
"editField");
1283 $this->tpl->setContent($a_form->getHTML() . $table);
1294 $this->
ctrl->saveParameter($this,
'record_id');
1295 $this->
ctrl->saveParameter($this,
'field_id');
1297 if (!$record_id || !$field_id) {
1310 $field_definition->importDefinitionFormPostValues($form, $this->
getPermissions(), $this->active_language);
1311 if (!$field_definition->importDefinitionFormPostValuesNeedsConfirmation()) {
1312 $field_definition->update();
1314 $translations->updateFromForm($field_id, $this->active_language, $form);
1316 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1317 $this->
ctrl->redirect($this,
'editField');
1327 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"md_adv_confirm_definition"));
1328 $field_definition->prepareDefinitionFormConfirmation($form);
1347 $this->
ctrl->setParameter($this,
'ftype', $field_type);
1349 if (!$record_id || !$field_type) {
1356 $field_definition->setRecordId($record_id);
1359 $this->tpl->setContent($a_form->getHTML());
1367 if (!$record_id || !$ftype) {
1374 $this->
ctrl->saveParameter($this,
'ftype');
1380 $field_definition->setRecordId($record_id);
1384 $field_definition->importDefinitionFormPostValues($form, $this->
getPermissions(), $this->active_language);
1385 $field_definition->save();
1388 $translations->read();
1391 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_settings'),
true);
1392 $this->
ctrl->redirect($this,
"editFields");
1401 $is_creation_mode = $a_definition->
getFieldId() ? false :
true;
1407 if ($is_creation_mode) {
1420 if ($is_creation_mode) {
1421 $form->
setTitle($this->
lng->txt(
'md_adv_create_field'));
1424 $form->
setTitle($this->
lng->txt(
'md_adv_edit_field'));
1440 (
string) $this->record->getRecordId(),
1458 $this->
form =
new ilPropertyFormGUI();
1461 $this->
form->setDescription($translations->getFormTranslationInfo($this->active_language));
1462 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
1466 $title->setValue($this->record->getTitle());
1467 $title->setSize(20);
1468 $title->setMaxLength(70);
1469 $title->setRequired(
true);
1472 $title->setDisabled(
true);
1474 $this->
form->addItem($title);
1475 $translations->modifyTranslationInfoForTitle($this->
form, $title, $this->active_language);
1479 $desc->
setValue($this->record->getDescription());
1483 $desc->setDisabled(
true);
1485 $this->
form->addItem($desc);
1486 $translations->modifyTranslationInfoForDescription($this->
form, $desc, $this->active_language);
1490 $check->setChecked($this->record->isActive());
1495 $check->setDisabled(
true);
1498 if (!$this->obj_type) {
1501 $scope->setInfo($this->
lng->txt(
'md_adv_scope_info'));
1502 $scope->setChecked($this->record->enabledScope());
1506 $this->
lng->txt(
'md_adv_scope_objects'),
1511 $subitems->
setValue($this->record->getScopeRefIds());
1512 $exp = $subitems->getExplorerGUI();
1514 $definition =
$GLOBALS[
'DIC'][
'objDefinition'];
1516 foreach ($definition->getAllRepositoryTypes() as
$type) {
1517 if ($definition->isContainer(
$type)) {
1518 $white_list[] =
$type;
1522 $exp->setTypeWhiteList($white_list);
1523 $exp->setSkipRootNode(
false);
1525 $scope->addSubItem($subitems);
1528 if (!$this->obj_type) {
1530 $section->setTitle($this->
lng->txt(
'md_obj_types'));
1531 $this->
form->addItem($section);
1535 0 => $this->
lng->txt(
"meta_obj_type_inactive"),
1536 1 => $this->
lng->txt(
"meta_obj_type_mandatory"),
1537 2 => $this->
lng->txt(
"meta_obj_type_optional")
1541 $t =
$type[
"obj_type"] .
":" .
$type[
"sub_type"];
1542 $this->
lng->loadLanguageModule(
$type[
"obj_type"]);
1549 if (
$type[
"obj_type"] ==
"prtf" &&
$type[
"sub_type"] ==
"pfpg") {
1553 if (
$type[
"obj_type"] ==
"tals" &&
$type[
"sub_type"] ==
"etal") {
1558 $type_options = $options;
1559 switch (
$type[
"obj_type"]) {
1562 unset($type_options[1]);
1566 unset($type_options[1]);
1570 unset($type_options[2]);
1575 if ($a_mode ==
"edit") {
1576 foreach ($this->record->getAssignedObjectTypes() as $item) {
1577 if ($item[
"obj_type"] ==
$type[
"obj_type"] &&
1578 $item[
"sub_type"] ==
$type[
"sub_type"]) {
1579 $value = $item[
"optional"]
1586 $sel_name =
'obj_types__' . $t;
1590 $hidden->setValue((
string) $value);
1591 $this->
form->addItem($hidden);
1597 $check->setOptions($type_options);
1598 $check->setValue($value);
1602 $check->setDisabled(
true);
1609 $this->
form->setTitle($this->
lng->txt(
'md_adv_create_record'));
1610 $this->
form->addCommandButton(
'saveRecord', $this->
lng->txt(
'add'));
1611 $this->
form->addCommandButton(
'showRecords', $this->
lng->txt(
'cancel'));
1615 $this->
form->setTitle($this->
lng->txt(
'md_adv_edit_record'));
1616 $this->
form->addCommandButton(
'updateRecord', $this->
lng->txt(
'save'));
1617 $this->
form->addCommandButton(
'showRecords', $this->
lng->txt(
'cancel'));
1624 if ($a_obj_type ==
"crs") {
1627 (
string) $a_field_id,
1647 } elseif ($a_obj_type ==
"cat") {
1650 (
string) $a_field_id,
1670 } elseif ($a_obj_type ==
"sess") {
1673 (
string) $a_field_id,
1693 } elseif ($a_obj_type ==
"grp") {
1696 (
string) $a_field_id,
1716 } elseif ($a_obj_type ==
"iass") {
1719 (
string) $a_field_id,
1739 } elseif ($a_obj_type ==
"exc") {
1742 (
string) $a_field_id,
1762 } elseif ($a_obj_type ==
"prg") {
1765 (
string) $a_field_id,
1785 } elseif ($a_obj_type ==
"orgu") {
1788 (
string) $a_field_id,
1822 $ilAccess = $DIC[
'ilAccess'];
1829 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
1830 #$this->form->setTableWidth('100%'); 1833 foreach ($visible_records as $obj_type => $records) {
1836 if (in_array($obj_type, $this->permissions->getAllowedObjectTypes())) {
1854 $section->setTitle($this->
lng->txt(
'objs_' . $obj_type));
1855 $this->
form->addItem($section);
1859 $check->setOptionTitle($this->
lng->txt(
'md_adv_desc_show'));
1860 $check->setChecked($sub->isDescriptionEnabled());
1864 $check->setDisabled(
true);
1869 $check->setOptionTitle($this->
lng->txt(
'md_adv_fields_show'));
1870 $check->setChecked($sub->enabledFieldNames());
1874 $check->setDisabled(
true);
1883 $definitions = $sub->sortDefinitions($definitions);
1886 foreach ($definitions as $def) {
1887 $definition_id = $def->getFieldId();
1892 $title = $def->getTitle() .
' (' . $title .
')';
1896 $check->setOptionTitle($this->
lng->txt(
'md_adv_show'));
1897 $check->setChecked($sub->isSubstituted($definition_id));
1899 if ($perm && !$perm[
"show"]) {
1900 $check->setDisabled(
true);
1904 $this->
lng->txt(
'position'),
1905 'position_' . $obj_type .
'_' . $definition_id
1908 $pos->setMaxLength(4);
1909 $pos->allowDecimals(
true);
1910 $pos->setValue(sprintf(
'%.1f', $counter++));
1911 $check->addSubItem($pos);
1913 if ($perm && !$perm_pos) {
1914 $pos->setDisabled(
true);
1918 $this->
lng->txt(
'bold'),
1919 'bold_' . $obj_type .
'_' . $definition_id
1922 $bold->setChecked($sub->isBold($definition_id));
1923 $check->addSubItem($bold);
1925 if ($perm && !$perm[
"bold"]) {
1926 $bold->setDisabled(
true);
1930 $this->
lng->txt(
'newline'),
1931 'newline_' . $obj_type .
'_' . $definition_id
1934 $bold->setChecked($sub->hasNewline($definition_id));
1935 $check->addSubItem($bold);
1937 if ($perm && !$perm[
"newline"]) {
1938 $bold->setDisabled(
true);
1944 $this->
form->setTitle($this->
lng->txt(
'md_adv_substitution_table'));
1946 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
1947 $this->
form->addCommandButton(
'updateSubstitutions', $this->
lng->txt(
'save'));
1958 (
string) $this->record->getRecordId(),
1977 $this->record->setActive((
bool) $form->
getInput(
'active'));
1981 $translations->getDefaultTranslation() == null ||
1984 $this->record->setTitle((
string) $form->
getInput(
'title'));
1989 $translations->getDefaultTranslation() == null ||
1991 $this->record->setDescription($form->
getInput(
'desc'));
1995 if (!$this->obj_type) {
1999 $t =
$type[
"obj_type"] .
":" .
$type[
"sub_type"];
2000 $value = $form->
getInput(
'obj_types__' . $t);
2005 'obj_type' =>
$type[
'obj_type'],
2006 'sub_type' =>
$type[
'sub_type'],
2007 'optional' => ($value > 1)
2010 $this->record->setAssignedObjectTypes($obj_types);
2015 $scopes_selection = $form->
getInput(
'scope_containers_sel');
2016 if (
$scopes && is_array($scopes_selection)) {
2017 $this->record->enableScope(
true);
2018 $this->record->setScopes(
2020 function (
string $scope_ref_id) {
2022 $scope->setRefId((
int) $scope_ref_id);
2029 $this->record->enableScope(
false);
2030 $this->record->setScopes([]);
2043 $this->
ctrl->saveParameter($this,
'record_id');
2046 if (!$record_id && $this->obj_id) {
2047 $this->record->setParentObject($this->obj_id);
2059 if ($context == self::CONTEXT_OBJECT) {
2063 $this->tabs_gui->clearSubTabs();
2065 $this->tabs_gui->addSubTabTarget(
2066 "md_adv_record_list",
2067 $this->
ctrl->getLinkTarget($this,
"showRecords"),
2075 $this->tabs_gui->addSubTabTarget(
2076 "md_adv_presentation",
2077 $this->
ctrl->getLinkTarget($this,
"showPresentation")
2081 $this->tabs_gui->addSubTabTarget(
2083 $this->
ctrl->getLinkTarget($this,
"showFiles"),
2096 $sub_type = (!is_array($this->sub_type))
2100 if ($this->context === self::CONTEXT_OBJECT) {
2109 $records = $orderings->sortRecords($records, $this->obj_id);
2114 foreach ($records as $record) {
2115 $parent_id = $record->getParentObject();
2117 if ($this->context == self::CONTEXT_ADMINISTRATION) {
2123 if ($parent_id && $parent_id != $this->obj_id) {
2128 if (!$parent_id && !$record->isActive()) {
2135 $record->getScopes()
2143 $tmp_arr[
'readonly'] = null;
2144 $tmp_arr[
'local'] = null;
2145 $tmp_arr[
'optional'] = null;
2146 $tmp_arr[
'id'] = $record->getRecordId();
2147 $tmp_arr[
'active'] = $record->isActive();
2148 $tmp_arr[
'title'] = $record->getTitle();
2149 $tmp_arr[
'description'] = $record->getDescription();
2150 $tmp_arr[
'fields'] = [];
2157 $tmp_arr[
'obj_types'] = $record->getAssignedObjectTypes();
2158 foreach ($record->getAssignedObjectTypes() as $idx => $item) {
2159 $tmp_arr[
'obj_types'][$idx][
'context'] = null;
2162 $tmp_arr[
'position'] = $position;
2164 $tmp_arr[
'perm'] = $this->permissions->hasPermissions(
2166 (
string) $record->getRecordId(),
2180 if ($this->obj_type) {
2181 $tmp_arr[
"readonly"] = !(bool) $parent_id;
2182 $tmp_arr[
"local"] = $parent_id;
2185 $assigned = (bool) $parent_id;
2187 foreach ($tmp_arr[
'obj_types'] as $idx => $item) {
2188 if ($item[
"obj_type"] == $this->obj_type &&
2189 in_array($item[
"sub_type"],
$sub_type)) {
2191 $optional = $item[
"optional"];
2192 $tmp_arr[
'obj_types'][$idx][
'context'] =
true;
2195 $tmp_arr[
'optional'] = $optional;
2199 $tmp_arr[
'local_selected'] = [];
2200 foreach ($selected as
$key => $records) {
2201 if (in_array($record->getRecordId(), $records)) {
2208 if ($assigned ??
true) {
2224 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_select_one'));
2225 $this->
ctrl->redirect($this,
'showRecords');
2229 if (!$field_definition->hasComplexOptions()) {
2230 $this->
ctrl->redirect($this,
"editField");
2237 $this->tpl->setContent($a_form->getHTML());
2242 $this->
ctrl->saveParameter($this,
"record_id");
2243 $this->
ctrl->saveParameter($this,
"field_id");
2244 $this->
ctrl->saveParameter($this,
"oid");
2247 $form->
setTitle($this->
lng->txt(
"md_adv_edit_complex_option"));
2251 $a_def->initOptionForm($form, $oid);
2265 if ($field_definition->hasComplexOptions()) {
2268 $field_definition->updateComplexOption($form, $oid)) {
2269 $field_definition->update();
2270 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
2274 $this->
ctrl->redirect($this,
"editField");
2282 foreach ($translations->getTranslations() as $translation) {
2283 if ($translation->getLangKey() == $translations->getDefaultLanguage()) {
2284 $default = $translation->getLangKey();
2287 $active = $this->request->getQueryParams()[
'mdlang'] ?? $default;
2288 $this->active_language = $active;
2295 if (count($translations->getTranslations()) <= 1) {
2299 foreach ($translations->getTranslations() as $translation) {
2300 $this->
ctrl->setParameter($this,
'mdlang', $translation->getLangKey());
2301 $actions[$translation->getLangKey()] = $this->
ctrl->getLinkTarget(
2306 $this->
ctrl->setParameter($this,
'mdlang', $this->active_language);
2307 $view_control = $this->ui_factory->viewControl()->mode(
2309 $this->
lng->txt(
'meta_aria_language_selection')
2310 )->withActive($this->active_language);
2311 $this->
toolbar->addComponent($view_control);
const ACTION_SUBSTITUTION_ORG_UNIT_EDIT_FIELD_PROPERTY
getDescription()
Get description.
const ACTION_RECORD_FIELD_POSITIONS
Interface GlobalHttpState.
Scope restrictions for advanced md records.
RefineryFactory $refinery
An entity that renders components to a string output.
const CONTEXT_SUBSTITUTION_COURSE
downloadFile()
Download XML file public.
const ACTION_RECORD_EDIT_PROPERTY
const CONTEXT_SUBSTITUTION
initComplexOptionForm(ilAdvancedMDFieldDefinition $a_def)
setSubTabs(int $context)
Set sub tabs protected.
const SUBACTION_SUBSTITUTION_NEWLINE
updateRecord()
Update record public.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getRecords()
Get records public.
const ACTION_RECORD_EXPORT
const CONTEXT_SUBSTITUTION_EXERCISE
deleteRecords()
Permanently delete records public.
const SUBACTION_SUBSTITUTION_BOLD
updateRecords()
Save records (assigned object typed) public.
const ACTION_FIELD_DELETE
const CONTEXT_SUBSTITUTION_CATEGORY
AMD field abstract base class.
initContextParameters(int $context, int $ref_id, ?string $obj_type, $sub_type)
const ACTION_RECORD_CREATE_FIELD
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
ilPropertyFormGUI $import_form
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
editRecord(ilPropertyFormGUI $form=null)
createRecord(ilPropertyFormGUI $form=null)
Show public.
loadRecordFormData(ilPropertyFormGUI $form)
static saveObjRecSelection(int $a_obj_id, string $a_sub_type="", array $a_records=null, bool $a_delete_before=true)
Save repository object record selection.
const CONTEXT_SUBSTITUTION_ORG_UNIT
ilAdvancedMDPermissionHelper $permissions
setContext(int $a_obj_id, string $a_obj_type, ?string $a_sub_type=null)
const SUBACTION_RECORD_TITLE
SaxParserException thrown by ilSaxParser if property throwException is set.
ilAdvancedMDRecord $record
const ACTION_FIELD_EDIT_PROPERTY
const TAB_RECORD_SETTINGS
updateFields()
Update fields public.
const CONTEXT_SUBSTITUTION_SESSION
setRecordSubTabs(int $level=1, bool $show_settings=false)
Set subtabs for record editing/creation.
static _getAssignableObjectTypes(bool $a_include_text=false)
Get assignable object type public.
static getInstancesByRecordId( $a_record_id, $a_only_searchable=false, string $language='')
Get definitions by record id.
static isFilteredByScope($a_ref_id, array $scopes)
Check if a given ref id is not filtered by scope restriction.
static getInstance(?int $a_field_id, ?int $a_type=null, string $language='')
updateField()
Update field public.
const ACTION_MD_CREATE_RECORD
const ACTION_SUBSTITUTION_IASS_EDIT_FIELD_PROPERTY
const SUBACTION_FIELD_SEARCHABLE
const ACTION_SUBSTITUTION_SHOW_DESCRIPTION
static _lookupObjId(int $ref_id)
editComplexOption(ilPropertyFormGUI $a_form=null)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
setValue(string $a_value)
const ACTION_MD_IMPORT_RECORDS
getSubstitutionFieldPermissions(string $a_obj_type, int $a_field_id)
static getObjRecSelection(int $a_obj_id, string $a_sub_type="")
Get repository object record selection.
static _getInstanceByRecordId(int $a_record_id)
confirmDeleteFiles()
confirm delete files public
const ACTION_SUBSTITUTION_IASS_SHOW_FIELD
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveRecord()
Save record public.
static http()
Fetches the global http state from ILIAS.
confirmDeleteRecords()
Confirm delete public.
initLanguage(int $record_id)
Advanced metadata permission helper.
showFiles()
Show export files.
static _lookupTitle(int $obj_id)
const SUBACTION_RECORD_OBJECT_TYPES
showLanguageSwitch(int $record_id, string $target)
const ACTION_SUBSTITUTION_CATEGORY_SHOW_FIELD
static getInstancesByObjType($a_obj_type, $a_active_only=true)
const ACTION_RECORD_TOGGLE_ACTIVATION
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
ilGlobalTemplateInterface $tpl
const ACTION_SUBSTITUTION_SESSION_SHOW_FIELD
const ACTION_SUBSTITUTION_ORG_UNIT_SHOW_FIELD
const ACTION_SUBSTITUTION_COURSE_EDIT_FIELD_PROPERTY
setDefaultLanguage(string $language_code)
static _getAllRecordsByObjectType()
Get records by obj_type Note: this returns only records with no sub types!
RequestInterface $request
form( $class_path, string $cmd)
createField(ilPropertyFormGUI $a_form=null)
Show field type selection public.
static getValidTypes()
Get all valid types.
static getInstanceByRecordId(int $record_id)
const ACTION_SUBSTITUTION_EXERCISE_EDIT_FIELD_PROPERTY
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
const ACTION_SUBSTITUTION_PRG_SHOW_FIELD
editField(ilPropertyFormGUI $a_form=null)
Edit field public.
const ACTION_RECORD_EDIT_FIELDS
const ACTION_RECORD_DELETE
const ACTION_SUBSTITUTION_SHOW_FIELDNAMES
static deleteObjRecSelection(int $a_obj_id)
Delete repository object record selection.
const ACTION_SUBSTITUTION_COURSE_SHOW_FIELD
updateSubstitutions()
Update substitution public.
const ACTION_SUBSTITUTION_FIELD_POSITIONS
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $a_record_id)
This class represents a text area property in a property form.
const SUBACTION_RECORD_DESCRIPTION
static getInstance(int $a_user_id, int $a_ref_id)
exportRecords()
Export records public.
const ACTION_SUBSTITUTION_SESSION_EDIT_FIELD_PROPERTY
const ACTION_SUBSTITUTION_CATEGORY_EDIT_FIELD_PROPERTY
initFormSubstitutions()
init form table 'substitutions' protected
static _getActivatedObjTypes()
get activated obj types
__construct(int $a_context, int $a_ref_id, ?string $a_obj_type=null, $a_sub_type=null)
Constructor public.
initFieldForm(ilAdvancedMDFieldDefinition $a_definition)
const ACTION_SUBSTITUTION_PRG_EDIT_FIELD_PROPERTY
deleteFiles()
Delete files public.
const CONTEXT_SUBSTITUTION_GROUP
static _lookupType(int $id, bool $reference=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addToFieldDefinitionForm(ilPropertyFormGUI $a_form, ilAdvancedMDPermissionHelper $a_permissions, string $language='')
Add input elements to definition form.
const CONTEXT_SUBSTITUTION_PRG
const ACTION_SUBSTITUTION_EXERCISE_SHOW_FIELD
getFieldId()
Get field_id.
const CONTEXT_SUBSTITUTION_IASS
const MODE_INSERT_VALIDATION
const ACTION_SUBSTITUTION_GROUP_SHOW_FIELD
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
static _getInstanceByObjectType(string $a_type)
const ACTION_SUBSTITUTION_GROUP_EDIT_FIELD_PROPERTY
const CONTEXT_ADMINISTRATION
static getInstanceByRecordId(int $record_id)