You are here

public function WizardTest::stepOneValidate in Chaos Tool Suite (ctools) 8.3

Validation callback for the first step.

File

tests/modules/ctools_wizard_test/src/Wizard/WizardTest.php, line 48

Class

WizardTest

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".'));
  }
}