mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
24 lines
427 B
PHP
24 lines
427 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 '';
|
|
}
|
|
}
|