You are here

function theme_heartbeat_no_comment in Heartbeat 7

Theme function for heartbeat no comment, waiting on approval.

Parameters

$comment Object comment with user in it:

$type Boolean to indicate whether it is a node comment or not:

$last Boolean to indicate if an extra class has to be used:

Return value

String Themed output for a comment

1 theme call to theme_heartbeat_no_comment()
heartbeat_comments_form_submit in modules/heartbeat_comments/heartbeat_comments.module
User submitted a heartbeat comment.

File

modules/heartbeat_comments/heartbeat_comments.module, line 679
Heartbeat comments for activity.

Code

function theme_heartbeat_no_comment($variables) {
  return '<li class="heartbeat-comment no-comment clearfix">' . t('Your comment is waiting for approval.') . '</li>';
}