function EntityWizard::stepOneValidate

Validation callback for the first step.

File

tests/modules/ctools_wizard_test/src/Wizard/EntityWizard.php, line 50

Class

EntityWizard

Namespace

Drupal\ctools_wizard_test\Wizard

Code

public function stepOneValidate($form, FormStateInterface $form_state) {
    if ($form_state->getValue('one') == 'wrong') {
        $form_state->setErrorByName('one', $this->t('Cannot set the value to "wrong".'));
    }
}