function comment_theme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/comment/comment.module \comment_theme()
Implements hook_theme().
File
- core/
modules/ comment/ comment.module, line 125 - Enables users to comment on published content.
Code
function comment_theme() {
return array(
'comment' => array(
'render element' => 'elements',
),
'field__comment' => array(
'base hook' => 'field',
),
);
}