Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class TestDataObjectWithCMSEditLink extends DataObject implements TestOnly |
||
14 | { |
||
15 | private static $table_name = 'TestDataObjectWithCMSEditLink'; |
||
|
|||
16 | |||
17 | private static array $db = [ |
||
18 | 'Title' => 'Varchar(255)', |
||
19 | 'Content' => 'HTMLText', |
||
20 | ]; |
||
21 | |||
22 | private static $has_one = [ |
||
23 | 'ElementalArea' => ElementalArea::class, |
||
24 | ]; |
||
25 | |||
26 | private static $owns = [ |
||
27 | 'ElementalArea', |
||
28 | ]; |
||
29 | |||
30 | public function CMSEditLink() |
||
37 | } |
||
38 | |||
39 | public function canDelete($member = null) |
||
46 |