Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
53 | public function getCMSFields() |
||
54 | 1 | { |
|
55 | 1 | $this->beforeUpdateCMSFields(function ($fields) { |
|
56 | 1 | $fields->removeByName(array( |
|
57 | 'ElementFeaturesID', |
||
58 | 1 | 'Sort', |
|
59 | )); |
||
60 | |||
61 | $fields->dataFieldByName('Image') |
||
62 | ->setFolderName('Uploads/Elements/Features'); |
||
63 | }); |
||
64 | 3 | ||
65 | return parent::getCMSFields(); |
||
66 | 3 | } |
|
92 |