| 1 | <?php |
||
| 9 | class FieldsetMarkup extends AbstractField |
||
| 10 | { |
||
| 11 | protected $legend = ''; |
||
| 12 | protected $fields = []; |
||
| 13 | |||
| 14 | 2 | public function fields(array $fields) |
|
| 20 | |||
| 21 | 1 | public function legend(string $legend) |
|
| 27 | |||
| 28 | 1 | public function getLegend(): string |
|
| 32 | |||
| 33 | 1 | public function getFields(): array |
|
| 37 | |||
| 38 | protected $hidden = [ |
||
| 39 | 'list' => true, |
||
| 40 | 'edit' => false, |
||
| 41 | 'create' => false, |
||
| 42 | ]; |
||
| 43 | |||
| 44 | 1 | public function shouldSkip(Request $request) |
|
| 48 | |||
| 49 | 1 | public function isMarkupRow() |
|
| 53 | |||
| 54 | 1 | public function prepare(CRUD $crud) |
|
| 60 | |||
| 61 | 1 | public function getListView($model) |
|
| 65 | |||
| 66 | 1 | public function getEditFormView($model) |
|
| 74 | |||
| 75 | 1 | public function getCreateFormView() |
|
| 82 | } |
||
| 83 |