function form_test_storage_form_submit

Form submit handler to finish multi-step form.

File

drupal/core/modules/system/tests/modules/form_test/form_test.module, line 965
Helper module for the form API tests.

Code

function form_test_storage_form_submit($form, &$form_state) {
  drupal_set_message("Title: " . check_plain($form_state['values']['title']));
  drupal_set_message("Form constructions: " . $_SESSION['constructions']);
  if (isset($form_state['storage']['thing']['changed'])) {
    drupal_set_message("The thing has been changed.");
  }
  $form_state['redirect'] = 'node';
}