Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Created June 10, 2014 04:49
Show Gist options
  • Select an option

  • Save flashvnn/90a5a5c00234f67417eb to your computer and use it in GitHub Desktop.

Select an option

Save flashvnn/90a5a5c00234f67417eb to your computer and use it in GitHub Desktop.
Drupal redirect with params
<?php
function module_form_course_node_form_submit($form, &$form_state) {
$form_state['redirect'] = array(
'node/'. $form_state['nid']. '/edit',
array(
'query' => array(
'cmd' => $cmd,
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment