Skip to content

Instantly share code, notes, and snippets.

@wojtha
Created May 1, 2011 17:33
Show Gist options
  • Save wojtha/950665 to your computer and use it in GitHub Desktop.
Save wojtha/950665 to your computer and use it in GitHub Desktop.
Advanced Drupal $form_state['redirect']
function mymodule_wizard_submit($form, &$form_state) {
$wizard = $form_state['values']['wizard'];
// $form_state['redirect'] = lazy drupal_goto, has the same parameters
$path = trim(parse_url($form['#action'], PHP_URL_PATH), '/');
$query = array('sender' => $wizard['sender'], 'recipient' => $wizard['recipient']);
$form_state['redirect'] = array($path, $query);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment