You are here

class MultistepForm in Examples for Developers 3.x

Same name and namespace in other branches
  1. 8 form_api_example/src/Form/MultistepForm.php \Drupal\form_api_example\Form\MultistepForm

Provides a form with two steps.

This example demonstrates a multistep form with text input elements. We extend FormBase which is the simplest form base class used in Drupal.

Hierarchy

Expanded class hierarchy of MultistepForm

See also

\Drupal\Core\Form\FormBase

1 string reference to 'MultistepForm'
form_api_example.routing.yml in modules/form_api_example/form_api_example.routing.yml
modules/form_api_example/form_api_example.routing.yml

File

modules/form_api_example/src/Form/MultistepForm.php, line 16

Namespace

Drupal\form_api_example\Form
View source
class MultistepForm extends FormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'form_api_example_multistep_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    if ($form_state
      ->has('page_num') && $form_state
      ->get('page_num') == 2) {
      return $this
        ->fapiExamplePageTwo($form, $form_state);
    }
    $form_state
      ->set('page_num', 1);
    $form['description'] = [
      '#type' => 'item',
      '#title' => $this
        ->t('A basic multistep form (page 1)'),
    ];
    $form['first_name'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('First Name'),
      '#description' => $this
        ->t('Enter your first name.'),
      '#default_value' => $form_state
        ->getValue('first_name', ''),
      '#required' => TRUE,
    ];
    $form['last_name'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Last Name'),
      '#default_value' => $form_state
        ->getValue('last_name', ''),
      '#description' => $this
        ->t('Enter your last name.'),
    ];
    $form['birth_year'] = [
      '#type' => 'number',
      '#title' => $this
        ->t('Birth Year'),
      '#default_value' => $form_state
        ->getValue('birth_year', ''),
      '#description' => $this
        ->t('Format is "YYYY" and value between 1900 and 2000'),
    ];

    // Group submit handlers in an actions element with a key of "actions" so
    // that it gets styled correctly, and so that other modules may add actions
    // to the form. This is not required, but is convention.
    $form['actions'] = [
      '#type' => 'actions',
    ];
    $form['actions']['next'] = [
      '#type' => 'submit',
      '#button_type' => 'primary',
      '#value' => $this
        ->t('Next'),
      // Custom submission handler for page 1.
      '#submit' => [
        '::fapiExampleMultistepFormNextSubmit',
      ],
      // Custom validation handler for page 1.
      '#validate' => [
        '::fapiExampleMultistepFormNextValidate',
      ],
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $page_values = $form_state
      ->get('page_values');
    $this
      ->messenger()
      ->addMessage($this
      ->t('The form has been submitted. name="@first @last", year of birth=@year_of_birth', [
      '@first' => $page_values['first_name'],
      '@last' => $page_values['last_name'],
      '@year_of_birth' => $page_values['birth_year'],
    ]));
    $this
      ->messenger()
      ->addMessage($this
      ->t('And the favorite color is @color', [
      '@color' => $form_state
        ->getValue('color'),
    ]));
  }

  /**
   * Provides custom validation handler for page 1.
   *
   * @param array $form
   *   An associative array containing the structure of the form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   */
  public function fapiExampleMultistepFormNextValidate(array &$form, FormStateInterface $form_state) {
    $birth_year = $form_state
      ->getValue('birth_year');
    if ($birth_year != '' && ($birth_year < 1900 || $birth_year > 2000)) {

      // Set an error for the form element with a key of "birth_year".
      $form_state
        ->setErrorByName('birth_year', $this
        ->t('Enter a year between 1900 and 2000.'));
    }
  }

  /**
   * Provides custom submission handler for page 1.
   *
   * @param array $form
   *   An associative array containing the structure of the form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   */
  public function fapiExampleMultistepFormNextSubmit(array &$form, FormStateInterface $form_state) {
    $form_state
      ->set('page_values', [
      // Keep only first step values to minimize stored data.
      'first_name' => $form_state
        ->getValue('first_name'),
      'last_name' => $form_state
        ->getValue('last_name'),
      'birth_year' => $form_state
        ->getValue('birth_year'),
    ])
      ->set('page_num', 2)
      ->setRebuild(TRUE);
  }

  /**
   * Builds the second step form (page 2).
   *
   * @param array $form
   *   An associative array containing the structure of the form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   *
   * @return array
   *   The render array defining the elements of the form.
   */
  public function fapiExamplePageTwo(array &$form, FormStateInterface $form_state) {
    $form['description'] = [
      '#type' => 'item',
      '#title' => $this
        ->t('A basic multistep form (page 2)'),
    ];
    $form['color'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Favorite color'),
      '#required' => TRUE,
      '#default_value' => $form_state
        ->getValue('color', ''),
    ];
    $form['back'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Back'),
      // Custom submission handler for 'Back' button.
      '#submit' => [
        '::fapiExamplePageTwoBack',
      ],
      // We won't bother validating the required 'color' field, since they
      // have to come back to this page to submit anyway.
      '#limit_validation_errors' => [],
    ];
    $form['submit'] = [
      '#type' => 'submit',
      '#button_type' => 'primary',
      '#value' => $this
        ->t('Submit'),
    ];
    return $form;
  }

  /**
   * Provides custom submission handler for 'Back' button (page 2).
   *
   * @param array $form
   *   An associative array containing the structure of the form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   */
  public function fapiExamplePageTwoBack(array &$form, FormStateInterface $form_state) {
    $form_state
      ->setValues($form_state
      ->get('page_values'))
      ->set('page_num', 1)
      ->setRebuild(TRUE);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 3
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 3
FormBase::container private function Returns the service container.
FormBase::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create 105
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 72
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
MultistepForm::buildForm public function Form constructor. Overrides FormInterface::buildForm
MultistepForm::fapiExampleMultistepFormNextSubmit public function Provides custom submission handler for page 1.
MultistepForm::fapiExampleMultistepFormNextValidate public function Provides custom validation handler for page 1.
MultistepForm::fapiExamplePageTwo public function Builds the second step form (page 2).
MultistepForm::fapiExamplePageTwoBack public function Provides custom submission handler for 'Back' button (page 2).
MultistepForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
MultistepForm::submitForm public function Form submission handler. Overrides FormInterface::submitForm
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.