function better_comments_theme in Better Comments 7.2
Same name and namespace in other branches
- 7 better_comments.module \better_comments_theme()
Implements hook_theme().
File
- ./
better_comments.module, line 546 - Better Comments provides option to configure the comment system.
Code
function better_comments_theme($existing, $type, $theme, $path) {
return array(
'better_comments' => array(
'template' => 'theme/better-comments',
'render element' => 'comment',
),
'better_comments_wrapper' => array(
'template' => 'theme/better-comments-wrapper',
'render element' => 'comment-wrapper',
),
);
}