function comment_block_info

Implements hook_block_info().

Archivo

drupal-7.x/modules/comment/comment.module, line 421
Enables users to comment on published content.

Código

function comment_block_info() {
  $blocks['recent']['info'] = t('Recent comments');
  $blocks['recent']['properties']['administrative'] = TRUE;

  return $blocks;
}