| 6 comment.module | comment_theme() |
| 7 comment.module | comment_theme() |
| 8 comment.module | comment_theme() |
Implements hook_theme().
File
- modules/
comment/ comment.module, line 194 - Enables users to comment on published content.
Code
function comment_theme() {
return array(
'comment_block' => array(
'variables' => array(),
),
'comment_preview' => array(
'variables' => array('comment' => NULL),
),
'comment' => array(
'template' => 'comment',
'render element' => 'elements',
),
'comment_post_forbidden' => array(
'variables' => array('node' => NULL),
),
'comment_wrapper' => array(
'template' => 'comment-wrapper',
'render element' => 'content',
),
);
}
Login or register to post comments