Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | public function updateCMSFields(FieldList $fields) |
||
36 | { |
||
37 | $CreatedByID = $fields->dataFieldByName('CreatedByID'); |
||
38 | if ($CreatedByID) { |
||
39 | $fields->replaceField('CreatedByID', $CreatedByID->performReadonlyTransformation()); |
||
40 | } |
||
41 | $LastEditedByID = $fields->dataFieldByName('LastEditedByID'); |
||
42 | if ($LastEditedByID) { |
||
43 | $fields->replaceField('LastEditedByID', $LastEditedByID->performReadonlyTransformation()); |
||
44 | } |
||
47 |