function node_unpublish_by_keyword_action_submit

Form submission handler for node_unpublish_by_keyword_action().

File

drupal/core/modules/node/node.module, line 3680
The core module that allows content to be submitted to the site.

Code

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