multistep_form

Categories

Component ID

2622598

Component name

multistep_form

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Component created

Component changed

Component body

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);
}