Same name and namespace in other branches
  1. 4.6.x modules/comment.module \comment_block()
  2. 4.7.x modules/comment.module \comment_block()
  3. 5.x modules/comment/comment.module \comment_block()

Implementation of hook_block().

Generates a block with the most recent comments.

File

modules/comment/comment.module, line 282
Enables users to comment on published content.

Code

function comment_block($op = 'list', $delta = 0) {
  if ($op == 'list') {
    $blocks[0]['info'] = t('Recent comments');
    return $blocks;
  }
  else {
    if ($op == 'view' && user_access('access comments')) {
      $block['subject'] = t('Recent comments');
      $block['content'] = theme('comment_block');
      return $block;
    }
  }
}