comment_unpublish_by_keyword_action_form

Versions
mediamosa-21
comment_unpublish_by_keyword_action_form($context)

Form builder; Prepare a form for blacklisted keywords.

See also

comment_unpublish_by_keyword_action()

@see comment_unpublish_by_keyword_action_submit()

Related topics

Code

modules/comment/comment.module, line 2455

<?php
function comment_unpublish_by_keyword_action_form($context) {
  $form['keywords'] = array(
    '#title' => t('Keywords'),
    '#type' => 'textarea',
    '#description' => t('The comment will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, "Company, Inc."'),
    '#default_value' => isset($context['keywords']) ? drupal_implode_tags($context['keywords']) : '',
  );

  return $form;
}
?>