multistep_form

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

The mulitstep_form module is a module that aims to ease the integration of multiple forms, into a multi-step form process. This process should be trivial for the downstream developer to implement. The aim, is to provide an interface where the the following code is all that's required to create a multi-step form from multiple sources:

function mymodule_form() {
  $forms = array(
    'other_module_form',
    'another_module_form',
    'yet_another_module_form',
  );

  return multistep_form_create($forms);
}