function comment_unpublish_by_keyword_action_submit

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/comment/comment.module \comment_unpublish_by_keyword_action_submit()

Process comment_unpublish_by_keyword_action_form form submissions.

See also

comment_unpublish_by_keyword_action()

Archivo

drupal-7.x/modules/comment/comment.module, line 2651
Enables users to comment on published content.

Código

function comment_unpublish_by_keyword_action_submit($form, $form_state) {
  return array('keywords' => drupal_explode_tags($form_state['values']['keywords']));
}