1.20.x comment.module comment_block_info()

Implements hook_block_info().

File

modules/comment/comment.module, line 433
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;
}