19 declare(strict_types=1);
56 $slot = $this->element_vocab_helper->slotForElement($element);
59 if ($element->
getData()->type() !== Type::NULL) {
62 $data = $this->getPresetValueFromConstraints($this->constraint_dictionary, $element) ??
$data;
65 $allows_custom_input =
true;
66 foreach ($this->element_vocab_helper->vocabulariesForSlot($slot) as
$vocab) {
67 $values_from_vocab = iterator_to_array(
$vocab->values());
68 $raw_values = array_merge($raw_values, $values_from_vocab);
70 if (!
$vocab->allowsCustomInputs()) {
71 $allows_custom_input =
false;
76 if (empty($raw_values)) {
78 $this->getInputLabelFromElement($this->presenter, $element, $context_element),
85 if (!$allows_custom_input) {
86 if (isset(
$data) && !in_array(
$data, $raw_values)) {
87 array_unshift($raw_values,
$data);
90 $this->getInputLabelFromElement($this->presenter, $element, $context_element),
99 $value_label = $this->presenter->utilities()->txt(
'md_editor_value');
100 $select_input = $this->
buildSelectInput($value_label, $slot, $element,
false, ...$raw_values);
101 $text_input = $this->
buildTextInput($value_label, $element,
false);
104 if (!in_array(
$data, $raw_values)) {
105 $text_input = $text_input->withValue(
$data);
106 $radio_value =
'custom';
108 $select_input = $select_input->withValue(
$data);
109 $radio_value =
'from_vocab';
113 $input = $this->ui_factory->switchableGroup(
115 'from_vocab' => $this->ui_factory->group(
116 [
'value' => $select_input],
117 $this->presenter->utilities()->txt(
'md_editor_from_vocab_input')
119 'custom' => $this->ui_factory->group(
120 [
'value' => $text_input],
121 $this->presenter->utilities()->txt(
'md_editor_custom_input')
124 $this->getInputLabelFromElement($this->presenter, $element, $context_element)
126 if (isset($radio_value)) {
127 $input = $input->withValue($radio_value);
129 return $this->addConstraintsFromElement($this->constraint_dictionary, $element, $input,
true)
130 ->withAdditionalTransformation(
131 $this->
refinery->custom()->transformation(
function ($vs) {
132 return $vs[1][
'value'] ??
null;
145 if ($super_name ===
'description') {
146 $input = $this->ui_factory->textarea($label);
148 $input = $this->ui_factory->text($label);
152 $input = $this->addValueFromElement($element, $input);
154 return $this->addConstraintsFromElement($this->constraint_dictionary, $element, $input, !$with_value);
165 string ...$raw_values
168 foreach ($this->presenter->data()->vocabularyValues($slot, ...$raw_values) as $labelled_value) {
169 $values[$labelled_value->value()] = $labelled_value->label();
171 $input = $this->ui_factory->select($label, $values);
174 $input = $this->addValueFromElement($element, $input);
176 return $this->addConstraintsFromElement($this->constraint_dictionary, $element, $input, !$with_value);
183 return $this->
rawInput($element, $context_element);
191 return $this->
rawInput($element, $context_element);
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Container $dic, ilPlugin $plugin)