function comment_block_info in Drupal 7
Implements hook_block_info().
File
- modules/
comment/ comment.module, line 421 - Enables users to comment on published content.
Code
function comment_block_info() {
$blocks['recent']['info'] = t('Recent comments');
$blocks['recent']['properties']['administrative'] = TRUE;
return $blocks;
}