You are here

public function ServerTestForm::validateForm in Lightweight Directory Access Protocol (LDAP) 8.4

Same name and namespace in other branches
  1. 8.3 ldap_servers/src/Form/ServerTestForm.php \Drupal\ldap_servers\Form\ServerTestForm::validateForm()

Form validation handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormBase::validateForm

File

ldap_servers/src/Form/ServerTestForm.php, line 309

Class

ServerTestForm
Use Drupal\Core\Form\FormBase;.

Namespace

Drupal\ldap_servers\Form

Code

public function validateForm(array &$form, FormStateInterface $form_state) : void {
  $values = $form_state
    ->getValues();
  $server = Server::load($values['id']);
  if (!$values['id']) {
    $form_state
      ->setErrorByName(NULL, $this
      ->t('No server id found in form'));
  }
  elseif (!$server) {
    $form_state
      ->setErrorByName(NULL, $this
      ->t('Failed to create server object for server with server id=%id', [
      '%id' => $values['id'],
    ]));
  }
}