mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
26 lines
508 B
PHP
26 lines
508 B
PHP
<?php
|
|
|
|
/**
|
|
* Adds Blog specific behaviour to Comment.
|
|
*/
|
|
class BlogCommentExtension extends DataExtension
|
|
{
|
|
/**
|
|
* Extra CSS classes for styling different comment types.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getExtraClass()
|
|
{
|
|
$blogPost = $this->owner->getParent();
|
|
|
|
if ($blogPost instanceof BlogPost) {
|
|
if ($blogPost->isAuthor($this->owner->Author())) {
|
|
return 'author-comment';
|
|
}
|
|
}
|
|
|
|
return '';
|
|
}
|
|
}
|