You are here

public function WebformElementBase::getElementSelectorSourceValues in Webform 6.x

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

Get an element's selectors source values.

Parameters

array $element: An element.

Return value

array An array of element selectors source values.

Overrides WebformElementInterface::getElementSelectorSourceValues

See also

\Drupal\webform\Entity\Webform::getElementsSelectorSourceValues

3 methods override WebformElementBase::getElementSelectorSourceValues()
OptionsBase::getElementSelectorSourceValues in src/Plugin/WebformElement/OptionsBase.php
Get an element's selectors source values.
WebformCompositeBase::getElementSelectorSourceValues in src/Plugin/WebformElement/WebformCompositeBase.php
Get an element's selectors source values.
WebformLikert::getElementSelectorSourceValues in src/Plugin/WebformElement/WebformLikert.php
Get an element's selectors source values.

File

src/Plugin/WebformElementBase.php, line 2194

Class

WebformElementBase
Provides a base class for a webform element.

Namespace

Drupal\webform\Plugin

Code

public function getElementSelectorSourceValues(array $element) {
  return [];
}