function action_example_node_sticky_action_submit

Submit handler for action_example_node_sticky_action.

Returns an associative array of values which will be available in the $context when an action is executed.

Related topics

File

action_example/action_example.module, line 325

Code

function action_example_node_sticky_action_submit($form, $form_state) {
    return array(
        'author' => $form_state['values']['author'],
    );
}