comment_theme()
Implements hook_theme().
File
- core/modules/comment/comment.module, line 126
- Enables users to comment on published content.
Code
1 2 3 4 5 6 7 8 9 10 | function comment_theme() { return array ( 'comment' => array ( 'render element' => 'elements' , ), 'field__comment' => array ( 'base hook' => 'field' , ), ); } |
Please login to continue.