function comment_unpublish_by_keyword_action

Unpublishes a comment if it contains certain keywords.

Parameters

Drupal\comment\Comment $comment: Comment object to modify.

array $context: Array with components:

  • 'keywords': Keywords to look for. If the comment contains at least one of the keywords, it is unpublished.

See also

comment_unpublish_by_keyword_action_form()

comment_unpublish_by_keyword_action_submit()

Related topics

File

drupal/core/modules/comment/comment.module, line 1947
Enables users to comment on published content.

Code

function comment_unpublish_by_keyword_action(Comment $comment, $context) {
  foreach ($context['keywords'] as $keyword) {
    $text = drupal_render($comment);
    if (strpos($text, $keyword) !== FALSE) {
      $comment->status = COMMENT_NOT_PUBLISHED;
      watchdog('action', 'Unpublished comment %subject.', array(
        '%subject' => $comment->subject,
      ));
      break;
    }
  }
}