You are here

public function ContainerBase::getElementSelectorOptions in Webform 6.x

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

Get an element's selectors as options.

Parameters

array $element: An element.

Return value

array An array of element selectors.

Overrides WebformElementBase::getElementSelectorOptions

See also

\Drupal\webform\Entity\Webform::getElementsSelectorSourceOption

1 method overrides ContainerBase::getElementSelectorOptions()
Details::getElementSelectorOptions in src/Plugin/WebformElement/Details.php
Get an element's selectors as options.

File

src/Plugin/WebformElement/ContainerBase.php, line 289

Class

ContainerBase
Provides a base 'container' class.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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