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/default/comment.theme.php

20 lines
409 B
PHP
Raw Normal View History

2009-07-06 11:31:40 +00:00
<?php
class CustomCommentListTheme extends CommentListTheme {
protected function comment_to_html($comment, $trim=false) {
2009-08-04 16:45:09 +00:00
return $this->rr(parent::comment_to_html($comment, $trim));
}
2009-07-06 11:31:40 +00:00
2009-08-04 16:45:09 +00:00
protected function build_postbox($image_id) {
return $this->rr(parent::build_postbox($image_id));
2009-07-06 11:31:40 +00:00
}
2010-04-20 01:24:36 +00:00
protected function rr($html) {
return "
<!-- cancel border -->
<div class='brr'>$html</div>
";
}
2009-07-06 11:31:40 +00:00
}
?>