1 comment.module | comment_block_info() |
Implements hook_block_info().
File
- core/
modules/ comment/ comment.module, line 459 - Enables users to comment on published content.
Code
function comment_block_info() {
$blocks['recent'] = array(
'info' => t('Recent comments'),
'description' => t('A list of recent comments posted to the site.'),
);
return $blocks;
}