comment_unpublish_by_keyword_action

Definition

comment_unpublish_by_keyword_action($comment, $context)
drupal/modules/comment/comment.module, line 2496

Description

Unpublishes a comment if it contains certain keywords.

@see comment_unpublish_by_keyword_action_form() @see comment_unpublish_by_keyword_action_submit()

Parameters

$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.

Related topics

Namesort iconDescription
ActionsFunctions that perform an action on a certain system object.

Code

function comment_unpublish_by_keyword_action($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;
    }
  }
}