| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class CMSNicetiesRecordSummaryExtension extends Extension |
||
| 15 | { |
||
| 16 | |||
| 17 | private static $casting = [ |
||
| 18 | 'RecordSummary' => 'HTMLFragment', |
||
| 19 | ]; |
||
| 20 | |||
| 21 | public function updateSummaryFields(&$array) |
||
| 22 | { |
||
| 23 | $array = ['RecordSummary' => 'ID'] + $array; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getRecordSummary() |
||
| 45 | } |
||
| 46 | } |
||
| 47 |