You are here

function nodequeue_add_action_submit in Nodequeue 6.2

Same name and namespace in other branches
  1. 5.2 nodequeue.actions.inc \nodequeue_add_action_submit()
  2. 7.3 includes/nodequeue.actions.inc \nodequeue_add_action_submit()
  3. 7.2 includes/nodequeue.actions.inc \nodequeue_add_action_submit()

Submit handler for Add to Nodequeues action configuration.

File

./nodequeue.module, line 1975
Maintains queues of nodes in arbitrary order.

Code

function nodequeue_add_action_submit($form, &$form_state) {
  return array(
    'qids' => $form_state['values']['qids'],
  );
}