ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclDateSelectionFieldRepresentation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public const PROP_SELECTION_TYPE = 'date_selection_type';
24  public const PROP_SELECTION_OPTIONS = 'date_selection_options';
25 
27  {
28  $selection_options = new ilDclGenericMultiInputGUI(
29  $this->lng->txt('dcl_selection_options'),
30  'prop_' . static::PROP_SELECTION_OPTIONS
31  );
32  $selection_options->setMulti(true, true);
33 
34  $text = new ilDateTimeInputGUI($this->lng->txt('dcl_selection_options'), 'selection_value');
35  $selection_options->addInput($text);
36 
37  return $selection_options;
38  }
39 }
This class represents a date/time property in a property form.
setMulti(bool $a_multi, bool $a_sortable=false, bool $a_addremove=true)