1 | <?php |
||
6 | class EditableFieldGroupEnd extends EditableFormField |
||
|
|||
7 | { |
||
8 | |||
9 | private static $belongs_to = array( |
||
10 | 'Group' => 'EditableFieldGroup' |
||
11 | ); |
||
12 | |||
13 | /** |
||
14 | * Disable selection of group class |
||
15 | * |
||
16 | * @config |
||
17 | * @var bool |
||
18 | */ |
||
19 | private static $hidden = true; |
||
20 | |||
21 | /** |
||
22 | * Non-data type |
||
23 | * |
||
24 | * @config |
||
25 | * @var bool |
||
26 | */ |
||
27 | private static $literal = true; |
||
28 | |||
29 | public function getCMSTitle() |
||
40 | |||
41 | public function getCMSFields() |
||
47 | |||
48 | public function getInlineClassnameField($column, $fieldClasses) |
||
52 | |||
53 | public function getInlineTitleField($column) |
||
57 | |||
58 | public function getFormField() |
||
62 | |||
63 | public function showInReports() |
||
67 | |||
68 | 26 | public function onAfterWrite() |
|
92 | |||
93 | protected function onAfterDelete() |
||
102 | } |
||
103 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.