function Wizard::buildForm
File
-
modules/ajax_example/src/Form/Wizard.php, line 38
Class
- Wizard
- AJAX example wizard.
Namespace
Drupal\ajax_example\Form
Code
public function buildForm(array $form, FormStateInterface $form_state, $no_js_use = FALSE) {
$url_one = Url::fromUri('internal:/examples/ajax-example/wizard-nojs');
$link_one = Link::fromTextAndUrl($this->t('examples/ajax-example/wizard-nojs'), $url_one)
->toString();
$url_two = Url::fromUri('internal:/examples/ajax-example/wizard');
$link_two = Link::fromTextAndUrl($this->t('examples/ajax-example/wizard'), $url_two)
->toString();
$form['#tree'] = TRUE;
$form['description'] = [
'#markup' => $this->t('This example is a step-by-step wizard. The @link2 does it without page reloads; the @link1 is the same code but simulates a non-javascript environment, showing it with page reloads.', [
'@link2' => $link_two,
'@link1' => $link_one,
]),
];
$form['step'] = [
'#type' => 'value',
'#value' => !empty($form_state->getValue('step')) ? $form_state->getValue('step') : 1,
];
switch ($form['step']['#value']) {
case 1:
$limit_validation_errors = [
[
'step',
],
];
$form['step1'] = [
'#type' => 'fieldset',
'#title' => $this->t('Step 1: Personal details'),
];
$form['step1']['name'] = [
'#type' => 'textfield',
'#title' => $this->t('Your name'),
'#default_value' => $form_state->hasValue([
'step1',
'name',
]) ? $form_state->getValue([
'step1',
'name',
]) : '',
'#required' => TRUE,
];
break;
case 2:
$limit_validation_errors = [
[
'step',
],
[
'step1',
],
];
$form['step1'] = [
'#type' => 'value',
'#value' => $form_state->getValue('step1'),
];
$form['step2'] = [
'#type' => 'fieldset',
'#title' => $this->t('Step 2: Street address info'),
];
$form['step2']['address'] = [
'#type' => 'textfield',
'#title' => $this->t('Your street address'),
'#default_value' => $form_state->hasValue([
'step2',
'address',
]) ? $form_state->getValue([
'step2',
'address',
]) : '',
'#required' => TRUE,
];
break;
case 3:
$limit_validation_errors = [
[
'step',
],
[
'step1',
],
[
'step2',
],
];
$form['step1'] = [
'#type' => 'value',
'#value' => $form_state->getValue('step1'),
];
$form['step2'] = [
'#type' => 'value',
'#value' => $form_state->getValue('step2'),
];
$form['step3'] = [
'#type' => 'fieldset',
'#title' => $this->t('Step 3: City info'),
];
$form['step3']['city'] = [
'#type' => 'textfield',
'#title' => $this->t('Your city'),
'#default_value' => $form_state->hasValue([
'step3',
'city',
]) ? $form_state->getValue([
'step3',
'city',
]) : '',
'#required' => TRUE,
];
break;
default:
$limit_validation_errors = [];
}
$form['actions'] = [
'#type' => 'actions',
];
if ($form['step']['#value'] > 1) {
$form['actions']['prev'] = [
'#type' => 'submit',
'#value' => $this->t('Previous step'),
'#limit_validation_errors' => $limit_validation_errors,
'#submit' => [
'::prevSubmit',
],
'#ajax' => [
'wrapper' => 'ajax-example-wizard-wrapper',
'callback' => '::prompt',
],
];
}
if ($form['step']['#value'] != 3) {
$form['actions']['next'] = [
'#type' => 'submit',
'#value' => $this->t('Next step'),
'#submit' => [
'::nextSubmit',
],
'#ajax' => [
'wrapper' => 'ajax-example-wizard-wrapper',
'callback' => '::prompt',
],
];
}
if ($form['step']['#value'] == 3) {
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this->t("Submit your information"),
];
}
if ($no_js_use) {
unset($form['actions']['next']['#ajax']);
unset($form['actions']['prev']['#ajax']);
}
$form['#prefix'] = '<div id="ajax-example-wizard-wrapper">';
$form['#suffix'] = '</div>';
return $form;
}