| Versions | |
|---|---|
| 7 | action_example_node_sticky_action_submit($form, $form_state) |
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.
examples/
<?php
function action_example_node_sticky_action_submit($form, $form_state) {
return array('author' => $form_state['values']['author']);
}
?>