ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
class.ilDclDatetimeSelectionFieldRepresentation.php
Go to the documentation of this file.
1<?php
2
19declare(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 $date = new ilDateTimeInputGUI();
31 $date->setShowTime(true);
32 $selection_options->setInput($date);
33
34 return $selection_options;
35 }
36}
This class represents a date/time property in a property form.