You are here

protected function EntityAutocomplete::prepareElementValidateCallbacks in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/EntityAutocomplete.php \Drupal\webform\Plugin\WebformElement\EntityAutocomplete::prepareElementValidateCallbacks()

Prepare an element's validation callbacks.

Parameters

array $element: An element.

\Drupal\webform\WebformSubmissionInterface $webform_submission: A webform submission.

Overrides WebformElementBase::prepareElementValidateCallbacks

File

src/Plugin/WebformElement/EntityAutocomplete.php, line 117

Class

EntityAutocomplete
Provides a 'entity_autocomplete' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

protected function prepareElementValidateCallbacks(array &$element, WebformSubmissionInterface $webform_submission = NULL) {
  parent::prepareElementValidateCallbacks($element, $webform_submission);
  $element['#element_validate'][] = [
    '\\Drupal\\webform\\Plugin\\WebformElement\\EntityAutocomplete',
    'validateEntityAutocomplete',
  ];
}