1 | <?php |
||
14 | class EditableFieldGroupEnd extends EditableFormField |
||
15 | { |
||
16 | private static $belongs_to = [ |
||
17 | 'Group' => EditableFieldGroup::class |
||
18 | ]; |
||
19 | |||
20 | /** |
||
21 | * Disable selection of group class |
||
22 | * |
||
23 | * @config |
||
24 | * @var bool |
||
25 | */ |
||
26 | private static $hidden = true; |
||
27 | |||
28 | /** |
||
29 | * Non-data type |
||
30 | * |
||
31 | * @config |
||
32 | * @var bool |
||
33 | */ |
||
34 | private static $literal = true; |
||
35 | |||
36 | private static $table_name = 'EditableFieldGroupEnd'; |
||
37 | |||
38 | public function getCMSTitle() |
||
49 | |||
50 | public function getCMSFields() |
||
56 | |||
57 | public function getInlineClassnameField($column, $fieldClasses) |
||
61 | |||
62 | public function getInlineTitleField($column) |
||
66 | |||
67 | public function getFormField() |
||
71 | |||
72 | public function showInReports() |
||
76 | |||
77 | public function onAfterWrite() |
||
101 | } |
||
102 |