theme_comment_block

  1. drupal
    1. 4.7 comment.module
    2. 5 comment.module
    3. 6
    4. 7
Versions
4.7 – 7 theme_comment_block()

Returns HTML for a list of recent comments to be displayed in the comment block.

Related topics

Code

drupal/modules/comment/comment.module, line 593

<?php
function theme_comment_block() {
  $items = array();
  $number = variable_get('comment_block_count', 10);
  foreach (comment_get_recent($number) as $comment) {
    $items[] = l($comment->subject, 'comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid)) . '&nbsp;<span>' . t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) . '</span>';
  }

  if ($items) {
    return theme('item_list', array('items' => $items));
  }
  else {
    return t('No comments available.');
  }
}
?>