1 | <?php |
||
19 | class DatePickerElement implements |
||
20 | SectionBlockElementInterface, |
||
21 | ActionsBlockElementInterface, |
||
22 | InputBlockElementInterface |
||
23 | { |
||
24 | use MessageJsonSerializeTrait; |
||
25 | |||
26 | /** @var string */ |
||
27 | private $type; |
||
28 | /** @var string */ |
||
29 | private $actionId; |
||
30 | /** @var PlainTextElement */ |
||
31 | private $placeholder; |
||
32 | /** @var string */ |
||
33 | private $initialDate; |
||
34 | /** @var ConfirmationDialogObject */ |
||
35 | private $confirmDialog; |
||
36 | |||
37 | public function __construct(string $actionId, string $placeholder = '', string $initialDate = '', ConfirmationDialogObject $confirmDialog = null) |
||
54 | } |
||
55 |