@@ -42,10 +42,10 @@ |
||
42 | 42 | |
43 | 43 | public function getCMSFields() |
44 | 44 | { |
45 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
45 | + $this->beforeUpdateCMSFields(function(FieldList $fields) { |
|
46 | 46 | $fields->push(ListboxField::create( |
47 | 47 | 'FilterFields', |
48 | - _t(__CLASS__ . '.ColumnsToSearch', 'Columns to search'), |
|
48 | + _t(__CLASS__.'.ColumnsToSearch', 'Columns to search'), |
|
49 | 49 | $this->FilterFor()->Fields()->map('ID', 'ReadableName') |
50 | 50 | )); |
51 | 51 |
@@ -24,10 +24,10 @@ |
||
24 | 24 | |
25 | 25 | public function getCMSFields() |
26 | 26 | { |
27 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
27 | + $this->beforeUpdateCMSFields(function(FieldList $fields) { |
|
28 | 28 | $fields->push(TextField::create( |
29 | 29 | 'Options', |
30 | - _t(__CLASS__ . '.Options', 'Dropdown options') |
|
30 | + _t(__CLASS__.'.Options', 'Dropdown options') |
|
31 | 31 | )); |
32 | 32 | }); |
33 | 33 |