function comment_block_info

7.x comment.module comment_block_info()

Implements hook_block_info().

File

drupal-7.x/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;
}