You are here

protected function Item::prepareElementValidateCallbacks in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/Item.php \Drupal\webform\Plugin\WebformElement\Item::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/Item.php, line 49

Class

Item
Provides a 'item' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

protected function prepareElementValidateCallbacks(array &$element, WebformSubmissionInterface $webform_submission = NULL) {
  parent::prepareElementValidateCallbacks($element, $webform_submission);
  $element['#element_validate'][] = [
    get_class($this),
    'validateItem',
  ];
}