1 | <?php |
||
14 | class EditableFormStep extends EditableFormField |
||
15 | { |
||
16 | private static $singular_name = 'Page Break'; |
||
17 | |||
18 | private static $plural_name = 'Page Breaks'; |
||
19 | |||
20 | /** |
||
21 | * Disable selection of step class |
||
22 | * |
||
23 | * @config |
||
24 | * @var bool |
||
25 | */ |
||
26 | private static $hidden = true; |
||
27 | |||
28 | private static $table_name = 'EditableFormStep'; |
||
29 | |||
30 | /** |
||
31 | * @return FieldList |
||
32 | */ |
||
33 | public function getCMSFields() |
||
41 | |||
42 | /** |
||
43 | * @return FormField |
||
44 | */ |
||
45 | public function getFormField() |
||
53 | |||
54 | protected function updateFormField($field) |
||
61 | |||
62 | /** |
||
63 | * @return boolean |
||
64 | */ |
||
65 | public function showInReports() |
||
69 | |||
70 | public function getInlineClassnameField($column, $fieldClasses) |
||
74 | |||
75 | public function getCMSTitle() |
||
87 | |||
88 | /** |
||
89 | * Get the JS expression for selecting the holder for this field |
||
90 | * |
||
91 | * @return string |
||
92 | */ |
||
93 | public function getSelectorHolder() |
||
97 | } |
||
98 |