function comment_block_view

7.x comment.module comment_block_view($delta = '')

Implements hook_block_view().

Generates a block with the most recent comments.

File

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

Code

function comment_block_view($delta = '') {
  if (user_access('access comments')) {
    $block['subject'] = t('Recent comments');
    $block['content'] = theme('comment_block');

    return $block;
  }
}