19 declare(strict_types=1);
55 $this->main_tpl = $DIC->ui()->mainTemplate();
63 return self::TYPE_SELECT;
68 return (
string) $a_adt_search->getADT()->getSelection();
74 $def->setNumeric(
false);
87 $default_language_values = [];
88 foreach ($this->
options()->getOptions() as $option) {
89 if ($translation = $option->getTranslationInLanguage($this->default_language)) {
90 $default_language_values[$option->optionID()] = $translation->getValue();
93 return $default_language_values;
98 bool $default_as_fallback =
true 100 $current_language_values = [];
101 foreach ($this->
options()->getOptions() as $option) {
102 if ($translation = $option->getTranslationInLanguage($language)) {
103 $current_language_values[$option->optionID()] = $translation->getValue();
105 $default_as_fallback &&
106 $translation = $option->getTranslationInLanguage($this->default_language)
108 $current_language_values[$option->optionID()] = $translation->getValue();
111 return $current_language_values;
125 if (strlen($content_language)) {
131 $this->
lng->txt(
"meta_advmd_select_options") => implode(
",", $options)
137 bool $a_disabled =
false,
145 if (!$this->
options()->hasOptions()) {
157 $field =
new ilTextInputGUI($this->
lng->txt(
'meta_advmd_select_options'),
'opts_new');
158 $field->setRequired(
true);
159 $field->setMulti(
true);
160 $field->setMaxLength(255);
161 $field->setDisabled($a_disabled);
172 $this->
lng->txt(
'meta_advmd_select_options_edit'),
176 $position_identifiers = [
177 '0' => $this->
lng->txt(
'meta_advmd_select_first_position_identifier')
180 $position_identifiers[(string) ($option->getPosition() + 1)] = sprintf(
181 $this->
lng->txt(
'meta_advmd_select_position_identifier'),
182 $option->getTranslationInLanguage($this->default_language)?->getValue() ??
'' 186 $disabled_checkbox_overwrites = [];
189 $option_value = $option->getTranslationInLanguage($this->default_language)?->
getValue() ??
'';
192 $position_identifiers,
193 $option->getPosition(),
196 (string) $option->optionID(),
197 count(iterator_to_array($options->
getOptions())) > 1,
200 if (!is_null($hidden)) {
201 $disabled_checkbox_overwrites[] = $hidden;
210 $position_identifiers,
212 $this->
lng->txt(
'meta_advmd_select_new_option'),
214 self::ADD_NEW_ENTRY_ID,
219 $entries->setDisabled($a_disabled);
222 foreach ($disabled_checkbox_overwrites as $input) {
234 array $position_select_options,
235 ?
int $position_value,
239 bool $with_delete_checkbox,
242 $disabled_checkbox_overwrite =
null;
246 $this->
lng->txt(
'meta_advmd_select_option_value'),
249 $value_input->setRequired(
true);
250 $value_input->setMaxLength(255);
251 $value_input->setValue($value);
252 $value_input->setDisabled($disabled);
253 $radio->addSubItem($value_input);
256 $this->
lng->txt(
'meta_advmd_select_option_position'),
259 $relevant_position_select_options = $position_select_options;
260 if (!is_null($position_value) && isset($relevant_position_select_options[$position_value + 1])) {
261 unset($relevant_position_select_options[$position_value + 1]);
263 $position->setOptions($relevant_position_select_options);
264 $position->setValue($position_value);
265 $position->setDisabled($disabled);
266 $radio->addSubItem($position);
268 if ($with_delete_checkbox) {
270 $this->
lng->txt(
'meta_advmd_select_delete_option'),
273 $delete->setDisabled($disabled);
274 $radio->addSubItem($delete);
282 $hidden->setValue(
"1");
283 $disabled_checkbox_overwrite = $hidden;
287 $radio->setDisabled($disabled);
289 return $disabled_checkbox_overwrite;
300 foreach ($this->
options()->getOptions() as $option) {
303 $title = $this->
lng->txt(
"meta_advmd_select_options");
307 'opts__' .
$language .
'__' . $option->optionID()
310 if ($option->hasTranslationInLanguage(
$language)) {
311 $text->setValue($option->getTranslationInLanguage(
$language)->getValue());
315 if ($option->hasTranslationInLanguage($default_language)) {
316 $default_value = $option->getTranslationInLanguage($default_language)->getValue();
319 $text->setInfo($default_language .
': ' . $default_value);
320 $text->setMaxLength(255);
321 $text->setRequired(
true);
334 $recipes = $a_form->
getInput(
"conf_det");
337 $sum = $a_form->
getInput(
"conf_det_act");
343 foreach ($recipes as $old_option => $recipe) {
344 $sum_act = $sum[$old_option];
345 $sgl_act = $sgl[$old_option];
347 if ($recipe ==
"sum") {
353 foreach (array_keys($sgl_act) as $obj_idx) {
354 if ($sum_act == self::REMOVE_ACTION_ID) {
357 if (substr($sum_act, 0, 4) ==
'idx_') {
358 $parts = explode(
'_', $sum_act);
361 $res[$old_option][$obj_idx] = $sum_act;
365 foreach ($sgl_act as $sgl_index => $sgl_item) {
368 } elseif ($sgl_item == self::REMOVE_ACTION_ID) {
369 $sgl_act[$sgl_index] =
"";
371 if (substr($sgl_item, 0, 4) ==
'idx_') {
372 $parts = explode(
'_', $sgl_item);
373 $sgl_act[$sgl_index] =
$parts[1];
377 $res[$old_option] = $sgl_act;
410 if ($new = $a_form->
getInput(
'opts_new')) {
411 foreach ($new as $position => $value) {
412 $new_option = $this->
options()->addOption();
413 $new_option->setPosition((
int) $position);
414 $new_translation = $new_option->addTranslation(
$language);
415 $new_translation->setValue(trim($value));
420 $edited_id = $a_form->
getInput(
'opts_edit');
421 if ($edited_id ===
'' || is_null($edited_id)) {
424 if ($edited_id !== self::ADD_NEW_ENTRY_ID) {
425 $edited_id = (
int) $edited_id;
433 if ($a_form->
getInput(
'delete_me_' . $edited_id) && $edited_id !== self::ADD_NEW_ENTRY_ID) {
434 $old_option_value = $this->
options()
435 ->getOption($edited_id)
436 ?->getTranslationInLanguage(
$language)?->getValue() ??
'';
437 $this->
options()->removeOption($edited_id);
444 $already_confirmed = is_array($this->confirmed_objects);
447 if (is_array($in_use)) {
448 foreach ($in_use as $item) {
449 if (!$already_confirmed) {
450 $this->confirm_objects[$edited_id][] = $item;
451 $this->confirm_objects_values[$edited_id] = $old_option_value;
459 $new_value = (string) $a_form->
getInput(
'value_' . $edited_id);
460 $new_position = (
int) $a_form->
getInput(
'position_' . $edited_id);
465 if ($edited_id === self::ADD_NEW_ENTRY_ID) {
466 $edited_option = $this->
options()->addOption();
468 $edited_option = $this->
options()->getOption($edited_id);
471 if ($edited_option->hasTranslationInLanguage($this->default_language)) {
472 $edited_option->getTranslationInLanguage($this->default_language)->setValue($new_value);
474 $edited_option->addTranslation($this->default_language)->setValue($new_value);
482 if ($new_position > $edited_option->getPosition()) {
487 if ($position === $new_position) {
488 $edited_option->setPosition($position);
491 foreach ($this->
options()->getOptions() as $option) {
492 if ($option === $edited_option) {
495 $option->setPosition($position);
498 if ($position === $new_position) {
499 $edited_option->setPosition($position);
514 $a_search->getADT()->setSelections((array) $a_value);
524 foreach ($in_use as $item) {
525 $res[] = array($item[
"obj_id"], $item[
"sub_type"], $item[
"sub_id"], $item[
"value_index"]);
533 foreach ($this->
options()->getOptions() as $option) {
534 $value = $form->
getInput(
'opts__' . $language .
'__' . $option->optionID());
535 $value = trim($value);
537 if ($option->hasTranslationInLanguage($language)) {
538 $option->getTranslationInLanguage($language)->setValue($value);
541 $new_translation = $option->addTranslation($language);
542 $new_translation->setValue($value);
548 return is_array($this->confirm_objects) && count($this->confirm_objects) > 0;
555 $objDefinition = $DIC[
'objDefinition'];
557 $post_conf_det = (array) ($this->
http->request()->getParsedBody()[
'conf_det'] ?? []);
558 $post_conf = (array) ($this->
http->request()->getParsedBody()[
'conf'] ?? []);
561 $custom_field->setDisabled(
true);
562 foreach ($custom_field->getSubInputItemsRecursive() as $sub_input) {
563 $sub_input->setDisabled(
true);
570 $hidden->
setValue($sub_input->getValue());
575 if (is_array($this->confirm_objects) && count($this->confirm_objects) > 0) {
577 $sec->setTitle(
$lng->
txt(
"md_adv_confirm_definition_select_section"));
580 foreach ($this->confirm_objects as $old_option_index => $items) {
581 $old_option_value = $this->confirm_objects_values[$old_option_index];
583 $lng->
txt(
"md_adv_confirm_definition_select_option") .
': "' . $old_option_value .
'"',
584 "conf_det[" . $this->
getFieldId() .
"][" . $old_option_index .
"]" 587 $details->setValue(
"sum");
591 if (isset($post_conf_det[$this->
getFieldId()][$old_option_index])) {
592 $details->setValue($post_conf_det[$this->
getFieldId()][$old_option_index]);
596 $details->addOption($sum);
599 $lng->
txt(
"md_adv_confirm_definition_select_option_all_action"),
600 "conf_det_act[" . $this->
getFieldId() .
"][" . $old_option_index .
"]" 604 "" =>
$lng->
txt(
"please_select"),
605 self::REMOVE_ACTION_ID =>
$lng->
txt(
"md_adv_confirm_definition_select_option_remove")
607 foreach ($this->
options()->getOptions() as $new_option) {
608 $new_id = $new_option->optionID();
609 $new_value = $new_option->getTranslationInLanguage($this->default_language)->getValue();
610 $options[
'idx_' . $new_id] =
$lng->
txt(
"md_adv_confirm_definition_select_option_overwrite") .
': "' . $new_value .
'"';
612 $sel->setOptions($options);
613 $sum->addSubItem($sel);
616 if (isset($post_conf_det[$this->
getFieldId()][$old_option_index])) {
617 if ($post_conf_det[$this->
getFieldId()][$old_option_index]) {
618 $sel->setValue($post_conf_det[$this->
getFieldId()][$old_option_index]);
619 } elseif ($post_conf_det[$this->
getFieldId()][$old_option_index] ==
"sum") {
620 $sel->setAlert(
$lng->
txt(
"msg_input_is_required"));
621 $DIC->ui()->mainTemplate()->setOnScreenMessage(
'failure',
$lng->
txt(
"form_input_not_valid"));
624 $single =
new ilRadioOption(
$lng->
txt(
"md_adv_confirm_definition_select_option_single"),
"sgl");
625 $details->addOption($single);
626 foreach ($items as $item) {
627 $obj_id = (
int) $item[0];
628 $sub_type = (string) $item[1];
629 $sub_id = (
int) $item[2];
635 if ($sub_type ===
'mob') {
640 $item_id = $obj_id .
"_" . $sub_type .
"_" . $sub_id;
643 $type_title =
$lng->
txt(
"obj_" . $type);
647 $class =
"ilObj" . $objDefinition->getClassName($type);
648 $class_path = $objDefinition->getLocation($type);
649 $ints = class_implements($class);
650 if (isset($ints[
"ilAdvancedMetaDataSubItems"])) {
652 $sub_title = $class::getAdvMDSubItemTitle($obj_id, $sub_type, $sub_id);
654 $title .=
' (' . $sub_title .
')';
660 $type_title .
' ' . $title,
661 "conf[" . $this->
getFieldId() .
"][" . $old_option_index .
"][" . $item_id .
"]" 663 $sel->setRequired(
true);
665 "" =>
$lng->
txt(
"please_select"),
666 self::REMOVE_ACTION_ID =>
$lng->
txt(
"md_adv_confirm_definition_select_option_remove")
668 foreach ($this->
options()->getOptions() as $new_option) {
669 $new_id = $new_option->optionID();
670 $new_value = $new_option->getTranslationInLanguage($this->default_language)->getValue();
671 $options[
'idx_' . $new_id] =
$lng->
txt(
"md_adv_confirm_definition_select_option_overwrite") .
': "' . $new_value .
'"';
673 $sel->setOptions($options);
676 if (isset($post_conf[$this->
getFieldId()][$old_option_index][$item_id])) {
677 if ($post_conf[$this->
getFieldId()][$old_option_index][$item_id]) {
678 $sel->setValue($post_conf[$this->
getFieldId()][$old_option_index][$item_id]);
679 } elseif ($post_conf_det[$this->
getFieldId()][$old_option_index] ==
"sgl") {
680 $sel->setAlert(
$lng->
txt(
"msg_input_is_required"));
681 $DIC->ui()->mainTemplate()->setOnScreenMessage(
'failure',
$lng->
txt(
"form_input_not_valid"));
685 $single->addSubItem($sel);
691 public function delete():
void 697 public function save(
bool $keep_pos_and_import_id =
false,
bool $keep_import_id =
false): void
699 parent::save($keep_pos_and_import_id, $keep_import_id);
705 $this->db_gateway->delete($this->
getFieldId());
710 $this->db_gateway->update($this->
options());
722 if (is_array($this->confirmed_objects) && count($this->confirmed_objects) > 0) {
726 $def->setOptions($this->old_options_array);
730 $page_list_mappings = [];
732 foreach ($this->confirmed_objects as $old_option => $item_ids) {
736 $old_values[$item[0] .
"_" . $item[1] .
"_" . $item[2]] = $item[3];
739 foreach ($item_ids as $item => $new_option) {
740 $parts = explode(
"_", $item);
746 if (isset($old_values[$item])) {
747 $old_id = $old_values[$item];
750 "obj_id" => array(
"integer", $obj_id),
751 "sub_type" => array(
"text", $sub_type),
752 "sub_id" => array(
"integer", $sub_id),
753 "field_id" => array(
"integer", $this->
getFieldId())
756 $id_old = array_merge(
762 $id_new = array_merge(
770 if (is_numeric($new_option)) {
776 if ($sub_type ==
"wpg") {
778 $page_list_mappings[(string) $old_option] = (
string) $new_option;
783 if (!empty($page_list_mappings)) {
790 $this->confirmed_objects = array();
799 foreach ($this->
options()->getOptions() as $option) {
800 foreach ($option->getTranslations() as $translation) {
803 [
'id' => $translation->language()],
804 $translation->getValue()
821 $associated_option =
null;
823 foreach ($this->
options()->getOptions() as $option) {
825 !$option->hasTranslationInLanguage(
$language) &&
826 !isset($associated_option)
828 $associated_option = $option;
830 $max_position = max($max_position, $option->getPosition());
832 if (!isset($associated_option)) {
833 $associated_option = $this->
options()->addOption();
834 $associated_option->setPosition($max_position + 1);
837 $new_translation = $associated_option->addTranslation(
$language);
838 $new_translation->setValue($a_value);
844 if (!$record->getParentObject()) {
845 return (
string) $element->getSelection();
853 foreach ($this->
options()->getOptions() as $option) {
854 if ($option->optionID() === (
int) $element->getSelection()) {
855 return (
string) $index;
865 $this->
getADT()->setSelection($a_cdata);
879 if (is_numeric($value) && !is_null($this->
options()->getOption((
int) $value))) {
884 foreach ($this->
options()->getOptions() as $option) {
885 if ($value === $option->getTranslationInLanguage($default_language)) {
886 return (
string) $option->optionID();
897 $a_bridge->setAutoSort(
false);
910 $this->default_language = $record->getDefaultLanguage();
913 public function _clone(
int $a_new_record_id):
self 916 $obj = parent::_clone($a_new_record_id);
917 $this->db_gateway->delete($obj->getFieldId());
918 $this->db_gateway->create($obj->getFieldId(), $this->
options());
importXMLProperty(string $a_key, string $a_value)
Since the XML import only allows for a key-value pair, we also rely on the order of properties to sor...
SelectSpecificData $options
This class represents an option in a radio group.
prepareCustomDefinitionFormConfirmation(ilPropertyFormGUI $a_form)
prepareElementForEditor(ilADTFormBridge $a_bridge)
addEditOptionsFieldsToDefinitionForm(SelectSpecificData $options, ilPropertyFormGUI $a_form, bool $a_disabled)
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...
getADTDefinition()
Get ADT definition instance.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
static initActiveRecordByType()
Init active record by type.
AMD field abstract base class.
save(bool $keep_pos_and_import_id=false, bool $keep_import_id=false)
getOptionsInLanguageAsArray(string $language, bool $default_as_fallback=true)
addRadioToEntriesGroup(ilRadioGroupInputGUI $entries, array $position_select_options, ?int $position_value, string $label, string $value, string $id, bool $with_delete_checkbox, bool $disabled)
Returns hidden inputs if a disabled checkbox is in the radio, such that we can use the workaround for...
addPropertiesToXML(ilXmlWriter $a_writer)
addCustomFieldToDefinitionFormInTranslationMode(ilPropertyFormGUI $form, bool $disabled, string $language='')
translateLegacyImportValueFromXML(string $value)
On import from <7 options are not given by index but by their label.
importFieldDefinition(array $a_def)
addCreateOptionsFieldsToDefinitionForm(ilPropertyFormGUI $a_form, bool $a_disabled)
_clone(int $a_new_record_id)
Clone field definition.
importTranslatedFormPostValues(ilPropertyFormGUI $form, string $language)
static migrateField(int $a_field_id, array $mapping)
Migrate search/filter values on advmd change.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static deleteByPrimary(string $a_table, array $a_primary, ?string $a_type=null)
importNewSelectOptions(bool $multi, ilPropertyFormGUI $a_form, string $language='')
static _getInstanceByRecordId(int $a_record_id)
static http()
Fetches the global http state from ILIAS.
static _lookupTitle(int $obj_id)
getSQLCondition(string $a_element_id, int $mode=self::SQL_LIKE, array $quotedWords=[])
Get SQL condition for current value(s)
getFieldDefinitionForTableGUI(string $content_language)
ilGlobalTemplateInterface $main_tpl
importDefinitionFormPostValuesNeedsConfirmation()
ADT search bridge base class.
useDefaultLanguageMode(string $language)
Check if default language mode has to be used: no language given or language equals default language...
importCustomDefinitionFormPostValues(ilPropertyFormGUI $a_form, string $language='')
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
importValueFromXML(string $a_cdata)
static create(string $table, array $fields, string $type)
GenericData $generic_data
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
language()
description: > Example for rendring a language glyph.
findBySingleValue(ilADTSearchBridge $a_search, $a_value)
static _lookupType(int $id, bool $reference=false)
ADT definition base class.
getRecordId()
Get record id.
getFieldId()
Get field_id.
getValueForXML(ilADT $element)
getSearchQueryParserValue(ilADTSearchBridge $a_adt_search)
addCustomFieldToDefinitionForm(ilPropertyFormGUI $a_form, bool $a_disabled=false, string $language='')
array $confirm_objects_values
static find(string $a_table, string $a_type, int $a_field_id, string $a_condition, ?string $a_additional_fields=null)
Find entries.
__construct(GenericData $generic_data, string $language='')
getOptionsInDefaultLanguageAsArray()
buildConfirmedObjects(ilPropertyFormGUI $a_form)
Process custom post values from definition form.