Total Complexity | 1 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class DatagridField extends AbstractField implements PositionAnnotationInterface |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * Filtering options. |
||
23 | * |
||
24 | * @var array |
||
25 | */ |
||
26 | public array $filterOptions = []; |
||
27 | |||
28 | /** |
||
29 | * Datagrid form field type options. |
||
30 | * |
||
31 | * @var array |
||
32 | */ |
||
33 | public array $fieldOptions = []; |
||
34 | |||
35 | /** |
||
36 | * Datagrid field position. |
||
37 | * |
||
38 | * @var int |
||
39 | */ |
||
40 | public int $position; |
||
41 | |||
42 | /** |
||
43 | * Get field settings. |
||
44 | * |
||
45 | * @return array |
||
46 | */ |
||
47 | public function getSettings(): array |
||
58 |