function hook_comment_unpublish

7.x comment.api.php hook_comment_unpublish($comment)

The comment is being unpublished by the moderator.

Parameters

$comment: Passes in the comment the action is being performed on.

Return value

Nothing.

Related topics

3 functions implement hook_comment_unpublish()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

forum_comment_unpublish in drupal-7.x/modules/forum/forum.module
Implements hook_comment_unpublish().
search_comment_unpublish in drupal-7.x/modules/search/search.module
Implements hook_comment_unpublish().
tracker_comment_unpublish in drupal-7.x/modules/tracker/tracker.module
Implements hook_comment_unpublish().

File

drupal-7.x/modules/comment/comment.api.php, line 127
Hooks provided by the Comment module.

Code

function hook_comment_unpublish($comment) {
  drupal_set_message(t('Comment: @subject has been unpublished', array('@subject' => $comment->subject)));
}