class MultistepForm in Examples for Developers 8
Same name and namespace in other branches
- 3.x modules/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
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\form_api_example\Form\MultistepForm
Expanded class hierarchy of MultistepForm
See also
1 string reference to 'MultistepForm'
- form_api_example.routing.yml in form_api_example/
form_api_example.routing.yml - form_api_example/form_api_example.routing.yml
File
- form_api_example/
src/ Form/ MultistepForm.php, line 16
Namespace
Drupal\form_api_example\FormView 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 self::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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
87 |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
MultistepForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
|
MultistepForm:: |
public | function | Provides custom submission handler for page 1. | |
MultistepForm:: |
public | function | Provides custom validation handler for page 1. | |
MultistepForm:: |
public | function | Builds the second step form (page 2). | |
MultistepForm:: |
public | function | Provides custom submission handler for 'Back' button (page 2). | |
MultistepForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
MultistepForm:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |