Added Input objects

This commit is contained in:
2019-04-17 01:31:00 +02:00
parent 0dfe90ebf6
commit ca0150ca0b
5 changed files with 117 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace AdminPanel\Form;
class DateInput extends TextInput
{
public function getOptions(): array
{
return array(
'label',
'value',
);
}
}