mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
11 lines
183 B
PHP
11 lines
183 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @package comments
|
||
|
*/
|
||
|
class ContentControllerCommentsExtension extends Extension {
|
||
|
|
||
|
public function Comments() {
|
||
|
return $this->owner->dataRecord->getComments();
|
||
|
}
|
||
|
}
|