function EntityWizard::stepOneValidate
Validation callback for the first step.
File
-
tests/
modules/ ctools_wizard_test/ src/ Wizard/ EntityWizard.php, line 50
Class
Namespace
Drupal\ctools_wizard_test\WizardCode
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".'));
}
}