You are here

function migrate_ui_wizard_next_submit in Migrate 7.2

Submit handler for the 'next' button. Saves the form values for the step we're leaving, so Previous can pick them up, and moves the wizard to the next step.

1 string reference to 'migrate_ui_wizard_next_submit'
MigrateUIWizard::form in migrate_ui/migrate_ui.wizard.inc
Build the form for the current step.

File

migrate_ui/migrate_ui.wizard.inc, line 89
Migration wizard framework.

Code

function migrate_ui_wizard_next_submit($form, &$form_state) {

  /** @var MigrateUIWizard $wizard */
  $wizard = $form_state['wizard'];
  $wizard
    ->gotoNextStep($form_state);
}