4 require_once
"Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php";
32 return self::TYPE_SELECT;
38 return $search_bridge->getADT()->getSelection();
50 $def->setNumeric(
false);
53 $translated_options = [];
57 $def->setOptions(array_replace(
$options, $translated_options));
73 if ($a_values !== null) {
74 foreach ($a_values as $idx => $value) {
75 $a_values[$idx] = trim($value);
76 if (!$a_values[$idx]) {
77 unset($a_values[$idx]);
80 $a_values = array_unique($a_values);
83 $this->options = $a_values;
117 $this->option_translations = $translations;
126 $this->option_translations[
$language] = $translations;
152 if (strlen($content_language)) {
158 $lng->txt(
"meta_advmd_select_options") => implode(
",",
$options)
181 $field->setRequired(
true);
182 $field->setMulti(
true,
true);
183 $field->setMaxLength(255);
189 $field->setValue(array_shift(
$options));
193 $field->setDisabled(
true);
206 $lng = $DIC->language();
216 $title =
$lng->txt(
"meta_advmd_select_options");
219 if (isset($translation[$index])) {
220 $text->setValue($translation[$index]);
222 $text->setInfo($default_language .
': ' . $option);
223 $text->setMaxLength(255);
224 $text->setRequired(
true);
239 $recipes = $a_form->
getInput(
"conf_det");
240 if (is_array($recipes[$this->
getFieldId()])) {
242 $sum = $a_form->
getInput(
"conf_det_act");
248 foreach ($recipes as $old_option => $recipe) {
249 $sum_act = $sum[$old_option];
250 $sgl_act = $sgl[$old_option];
252 if ($recipe ==
"sum") {
258 foreach (array_keys($sgl_act) as $obj_idx) {
259 if ($sum_act == self::REMOVE_ACTION_ID) {
262 if (substr($sum_act, 0, 4) ==
'idx_') {
263 $parts = explode(
'_', $sum_act);
264 $sum_act = $parts[1];
266 $res[$old_option][$obj_idx] = $sum_act;
270 foreach ($sgl_act as $sgl_index => $sgl_item) {
273 } elseif ($sgl_item == self::REMOVE_ACTION_ID) {
274 $sgl_act[$sgl_index] =
"";
276 if (substr($sgl_item, 0, 4) ==
'idx_') {
277 $parts = explode(
'_', $sgl_item);
278 $sgl_act[$sgl_index] = $parts[1];
282 $res[$old_option] = $sgl_act;
316 $missing = array_diff_assoc($old, $new);
319 foreach ($missing as $missing_idx => $missing_value) {
320 if (in_array($missing_value, $new)) {
321 $index_map[$missing_idx] = array_search($missing_value, $new);
325 if (
sizeof($missing)) {
327 $already_confirmed = is_array($this->confirmed_objects);
330 foreach ($missing as $missing_idx => $missing_value) {
332 if (is_array($in_use)) {
333 foreach ($in_use as $item) {
334 if (array_key_exists($missing_idx, $index_map)) {
335 $complete_id = $item[0] .
"_" . $item[1] .
"_" . $item[2];
336 $new_index = $index_map[$missing_idx];
337 $this->confirmed_objects[$missing_idx][$complete_id] = $new_index;
340 if (!$already_confirmed) {
341 $this->confirm_objects[$missing_idx][] = $item;
342 $this->confirm_objects_values[$missing_idx] = $old[$missing_idx];
348 $this->old_options = $old;
353 $current_lang = (string) $current_lang;
357 $updated_translations = [];
358 foreach (
$options as $idx => $option) {
359 if (array_key_exists($idx, $index_map)) {
360 $updated_translations[$index_map[$idx]] = $option;
363 $updated_translations[$idx] = $option;
372 $a_search->
getADT()->setSelections((array) $a_value);
382 foreach ($in_use as $item) {
383 $res[] = array($item[
"obj_id"], $item[
"sub_type"], $item[
"sub_id"], $item[
"value_index"]);
397 $translated_options = [];
398 foreach ($this->
getOptions() as $idx => $value) {
399 $value = $form->
getInput(
'opts__' . $language .
'__' . (
string) $idx);
400 $translated_options[] = trim($value);
403 $translations[
$language] = $translated_options;
409 return is_array($this->confirm_objects) && count($this->confirm_objects) > 0;
417 $objDefinition = $DIC[
'objDefinition'];
420 if (is_array($this->confirm_objects) && count($this->confirm_objects) > 0) {
421 $new_options = $a_form->
getInput(
"opts");
424 $sec->setTitle(
$lng->txt(
"md_adv_confirm_definition_select_section"));
427 foreach ($this->confirm_objects as $old_option => $items) {
428 $old_option_value = $this->confirm_objects_values[$old_option];
429 $details =
new ilRadioGroupInputGUI(
$lng->txt(
"md_adv_confirm_definition_select_option") .
': "' . $old_option_value .
'"',
"conf_det[" . $this->
getFieldId() .
"][" . $old_option .
"]");
431 $details->setValue(
"sum");
439 $sum =
new ilRadioOption(
$lng->txt(
"md_adv_confirm_definition_select_option_all"),
"sum");
440 $details->addOption($sum);
443 $lng->txt(
"md_adv_confirm_definition_select_option_all_action"),
444 "conf_det_act[" . $this->
getFieldId() .
"][" . $old_option .
"]" 446 $sel->setRequired(
true);
448 "" =>
$lng->txt(
"please_select"),
449 self::REMOVE_ACTION_ID =>
$lng->txt(
"md_adv_confirm_definition_select_option_remove")
451 foreach ($new_options as $new_option_index => $new_option) {
452 $options[
'idx_' . $new_option_index] =
$lng->txt(
"md_adv_confirm_definition_select_option_overwrite") .
': "' . $new_option .
'"';
455 $sum->addSubItem($sel);
462 $sel->setAlert(
$lng->txt(
"msg_input_is_required"));
466 $single =
new ilRadioOption(
$lng->txt(
"md_adv_confirm_definition_select_option_single"),
"sgl");
467 $details->addOption($single);
468 foreach ($items as $item) {
470 $sub_type = $item[1];
473 $item_id = $obj_id .
"_" . $sub_type .
"_" . $sub_id;
480 $class =
"ilObj" . $objDefinition->getClassName(
$type);
481 $class_path = $objDefinition->getLocation(
$type);
482 include_once $class_path .
"/class." . $class .
".php";
483 $ints = class_implements($class);
484 if (isset($ints[
"ilAdvancedMetaDataSubItems"])) {
485 $sub_title = $class::getAdvMDSubItemTitle($obj_id, $sub_type, $sub_id);
487 $title .=
' (' . $sub_title .
')';
493 $type_title .
' ' .
$title,
494 "conf[" . $this->
getFieldId() .
"][" . $old_option .
"][" . $item_id .
"]" 496 $sel->setRequired(
true);
498 "" =>
$lng->txt(
"please_select"),
499 self::REMOVE_ACTION_ID =>
$lng->txt(
"md_adv_confirm_definition_select_option_remove")
501 foreach ($new_options as $new_option_index => $new_option) {
502 $options[
'idx_' . $new_option_index] =
$lng->txt(
"md_adv_confirm_definition_select_option_overwrite") .
': "' . $new_option .
'"';
511 $sel->setAlert(
$lng->txt(
"msg_input_is_required"));
516 $single->addSubItem($sel);
522 public function delete()
528 public function save($a_keep_pos =
false)
530 parent::save($a_keep_pos);
541 $db = $DIC->database();
542 $query =
'delete from adv_mdf_enum ' .
557 $db = $DIC->database();
560 foreach (
$options as $idx => $option) {
561 $query =
'insert into adv_mdf_enum (field_id, lang_code, idx, value )' .
580 if (is_array($this->confirmed_objects) && count($this->confirmed_objects) > 0) {
584 $def->setOptions($this->old_options);
588 $page_list_mappings = [];
590 foreach ($this->confirmed_objects as $old_option => $item_ids) {
592 $old_values = array();
594 $old_values[$item[0] .
"_" . $item[1] .
"_" . $item[2]] = $item[3];
598 foreach ($item_ids as $item => $new_option) {
599 $parts = explode(
"_", $item);
601 $sub_type = $parts[1];
605 if (isset($old_values[$item])) {
606 $old_value = $old_values[$item];
615 $old_idx = $old_value;
616 if (isset($old_idx)) {
618 "obj_id" => array(
"integer", $obj_id),
619 "sub_type" => array(
"text", $sub_type),
620 "sub_id" => array(
"integer", $sub_id),
621 "field_id" => array(
"integer", $this->
getFieldId())
624 $index_old = array_merge(
630 $index_new = array_merge(
638 if (is_numeric($new_option)) {
646 if ($sub_type ==
"wpg") {
648 $page_list_mappings[(string) $old_option] = (
string) $new_option;
653 if (!empty($page_list_mappings)) {
660 $this->confirmed_objects = array();
675 $a_writer->
xmlElement(
'FieldValue', null, $value);
678 foreach ((array) $translations as $value) {
679 $a_writer->
xmlElement(
'FieldValue', [
'id' => $lang_key], $value);
691 $this->options[] = $a_value;
693 $this->option_translations[$a_key][] = $a_value;
704 return $element->getSelection();
709 $this->
getADT()->setSelection($a_cdata);
721 $a_enum->setAutoSort(
false);
724 protected function import(array $db_data)
728 parent::import($db_data);
730 $db = $DIC->database();
731 $query =
'select * from adv_mdf_enum ' .
739 if ($row->lang_code == $record->getDefaultLanguage()) {
740 $default[$row->idx] = $row->value;
742 $options[$row->lang_code][$row->idx] = $row->value;
756 $db = $DIC->database();
758 $obj = parent::_clone($a_new_record_id);
759 $query =
'select * from adv_mdf_enum ' .
767 if ($row->lang_code == $record->getDefaultLanguage()) {
768 $default[$row->idx] = $row->value;
770 $options[$row->lang_code][$row->idx] = $row->value;
772 $obj->setOptions($default);
773 $obj->setOptionTranslations(
$options);
This class represents an option in a radio group.
prepareCustomDefinitionFormConfirmation(ilPropertyFormGUI $a_form)
getADTDefinition()
Get ADT definition instance.
static initActiveRecordByType()
Init active record by type.
AMD field abstract base class.
setOptionTranslations(array $translations)
getADT()
Get ADT instance.
importXMLProperty($a_key, $a_value)
importValueFromXML($a_cdata)
addPropertiesToXML(ilXmlWriter $a_writer)
addCustomFieldToDefinitionFormInTranslationMode(ilPropertyFormGUI $form, bool $disabled, string $language='')
static _lookupTitle($a_id)
lookup object title
static getInstance()
Get singleton.
importFieldDefinition(array $a_def)
updateOptionTranslations()
getOptionTranslation(string $language)
importTranslatedFormPostValues(ilPropertyFormGUI $form, string $language)
static migrateField(int $a_field_id, array $mapping)
Migrate search/filter values on advmd change.
importNewSelectOptions(bool $multi, ilPropertyFormGUI $a_form, string $language='')
static find($a_table, $a_type, $a_field_id, $a_condition, $a_additional_fields=null)
Find entries.
static _getInstanceByRecordId($a_record_id)
Get instance by record id.
foreach($_POST as $key=> $value) $res
static deleteByPrimary($a_table, array $a_primary, $a_type=null)
Delete values by (partial) primary key.
getSQLCondition($a_element_id)
getFieldDefinitionForTableGUI(string $content_language)
setOptions(array $a_values=null)
Set options.
findBySingleValue(ilADTEnumSearchBridgeMulti $a_search, $a_value)
importDefinitionFormPostValuesNeedsConfirmation()
static _lookupType($a_id, $a_reference=false)
lookup object type
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
prepareElementForEditor(ilADTFormBridge $a_enum)
ADT search bridge base class.
xmlElement($tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
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='')
Import custom post values from definition form.
addCustomFieldToDefinitionForm(ilPropertyFormGUI $a_form, $a_disabled=false, string $language='')
Add input elements to definition form.
static create(string $table, array $fields, string $type)
deleteOptionTranslations()
getRecordId()
Get record id.
getFieldId()
Get field_id.
getValueForXML(ilADT $element)
setOptionTranslationsForLanguage(array $translations, string $language)
getSearchQueryParserValue(ilADTSearchBridge $search_bridge)
buildConfirmedObjects(ilPropertyFormGUI $a_form)
Process custom post values from definition form.