function token_example_example_form_submit
Same name in other branches
- 7.x-1.x token_example/token_example.module \token_example_example_form_submit()
Submit callback; store the submitted values into storage.
Related topics
File
-
token_example/
token_example.module, line 128
Code
function token_example_example_form_submit($form, &$form_state) {
$form_state['storage'] = $form_state['values'];
$form_state['rebuild'] = TRUE;
}