function action_example_node_sticky_action_submit in Examples for Developers 7
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 - Action definition example module.
Code
function action_example_node_sticky_action_submit($form, $form_state) {
return array(
'author' => $form_state['values']['author'],
);
}