This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/themes/lite/comment.theme.php
2014-04-29 01:51:13 -04:00

20 lines
429 B
PHP

<?php
class CustomCommentListTheme extends CommentListTheme {
/**
* @param Comment $comment
* @param bool $trim
* @return string
*/
protected function comment_to_html($comment, $trim=false) {
return $this->rr(parent::comment_to_html($comment, $trim));
}
/**
* @param int $image_id
* @return string
*/
protected function build_postbox($image_id) {
return $this->rr(parent::build_postbox($image_id));
}
}