1 | <?php namespace Anomaly\PreferencesModule\Preference\Form; |
||
12 | class PreferenceFormBuilder extends FormBuilder |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * No model needed. |
||
17 | * |
||
18 | * @var bool |
||
19 | */ |
||
20 | protected $model = false; |
||
21 | |||
22 | /** |
||
23 | * The form fields handler. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $fields = PreferenceFormFields::class; |
||
28 | |||
29 | /** |
||
30 | * The form actions. |
||
31 | * |
||
32 | * @var array |
||
33 | */ |
||
34 | protected $actions = [ |
||
35 | 'update', |
||
36 | ]; |
||
37 | |||
38 | /** |
||
39 | * The form options. |
||
40 | * |
||
41 | * @var array |
||
42 | */ |
||
43 | protected $options = [ |
||
44 | 'breadcrumb' => false, |
||
45 | ]; |
||
46 | } |
||
47 |