| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class CategoryExtension extends DataExtension |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | private static $has_one = [ |
||
|
|
|||
| 26 | 'MarkerIconImage' => Image::class, |
||
| 27 | ]; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var array |
||
| 31 | */ |
||
| 32 | private static $owns = [ |
||
| 33 | 'MarkerIconImage', |
||
| 34 | ]; |
||
| 35 | |||
| 36 | |||
| 37 | public function updateCMSFields(FieldList $fields) |
||
| 47 |