function comment_count_unpublished

7.x comment.module comment_count_unpublished()

Returns a menu title which includes the number of unapproved comments.

1 string reference to 'comment_count_unpublished'
comment_menu in drupal-7.x/modules/comment/comment.module
Implements hook_menu().

File

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

Code

function comment_count_unpublished() {
  $count = db_query('SELECT COUNT(cid) FROM {comment} WHERE status = :status', array(
    ':status' => COMMENT_NOT_PUBLISHED,
  ))->fetchField();
  return t('Unapproved comments (@count)', array('@count' => $count));
}