You are here

function token_example_example_form_submit in Examples for Developers 6

Same name and namespace in other branches
  1. 7 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
The Token API module.

Code

function token_example_example_form_submit($form, &$form_state) {
  $form_state['storage'] = $form_state['values'];
  $form_state['rebuild'] = TRUE;
}