function AccountForm::flagViolations

Same name and namespace in other branches
  1. 9 core/modules/user/src/AccountForm.php \Drupal\user\AccountForm::flagViolations()
  2. 8.9.x core/modules/user/src/AccountForm.php \Drupal\user\AccountForm::flagViolations()
  3. 10 core/modules/user/src/AccountForm.php \Drupal\user\AccountForm::flagViolations()

Overrides ContentEntityForm::flagViolations

File

core/modules/user/src/AccountForm.php, line 413

Class

AccountForm
Form controller for the user account forms.

Namespace

Drupal\user

Code

protected function flagViolations(EntityConstraintViolationListInterface $violations, array $form, FormStateInterface $form_state) {
    // Manually flag violations of fields not handled by the form display. This
    // is necessary as entity form displays only flag violations for fields
    // contained in the display.
    $field_names = [
        'name',
        'pass',
        'mail',
        'timezone',
        'langcode',
        'preferred_langcode',
        'preferred_admin_langcode',
    ];
    foreach ($violations->getByFields($field_names) as $violation) {
        [
            $field_name,
        ] = explode('.', $violation->getPropertyPath(), 2);
        $form_state->setErrorByName($field_name, $violation->getMessage());
    }
    parent::flagViolations($violations, $form, $form_state);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.