ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilDclTextSelectionFieldRepresentation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
24  {
25  $selection_options = new ilDclGenericMultiInputGUI(
26  $this->lng->txt('dcl_selection_options'),
27  'prop_' . $this->field::PROP_SELECTION_OPTIONS
28  );
29 
30  $text = new ilTextInputGUI($this->lng->txt('dcl_selection_options'), 'selection_value');
31  $selection_options->setInput($text);
32 
33  return $selection_options;
34  }
35 }