You are here

function example_form_submit_redirect_handler in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/Drupal/Formatting/MultipleStatementAlignmentUnitTest.inc \example_form_submit_redirect_handler()
  2. 8.2 coder_sniffer/Drupal/Test/Formatting/MultipleStatementAlignmentUnitTest.inc \example_form_submit_redirect_handler()

Example function.

File

tests/Drupal/Formatting/MultipleStatementAlignmentUnitTest.inc, line 27

Code

function example_form_submit_redirect_handler($form, &$form_state) {
  $selected_content = $form_state['values']['field_content_type'][LANGUAGE_NONE][0]['value'];
  $_SESSION['file_upload_session'] = TRUE;
  $form_state['redirect'] = 'example/' . $selected_content . '/' . $form_state['nid'] . '/mapping';
}