1 | <?php |
||
16 | class CommentableItem extends DataObject implements TestOnly |
||
17 | { |
||
18 | private static $db = array( |
||
19 | 'Title' => 'Varchar' |
||
20 | ); |
||
21 | |||
22 | private static $extensions = array( |
||
23 | CommentsExtension::class |
||
24 | ); |
||
25 | |||
26 | public function RelativeLink() |
||
30 | |||
31 | public function canView($member = null) |
||
35 | |||
36 | // This is needed for canModerateComments |
||
37 | public function canEdit($member = null) |
||
52 | |||
53 | public function Link() |
||
57 | |||
58 | public function AbsoluteLink() |
||
62 | } |
||
63 |