function node_unpublish_by_keyword_action_submit
Same name and namespace in other branches
- 6.x drupal-6.x/modules/node/node.module \node_unpublish_by_keyword_action_submit()
Saves settings form for node_unpublish_by_keyword_action().
Archivo
- drupal-7.x/
modules/ node/ node.module, line 4061 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Código
function node_unpublish_by_keyword_action_submit($form, $form_state) {
return array('keywords' => drupal_explode_tags($form_state['values']['keywords']));
}