You are here

public function WebformMarkupBase::getElementSelectorOptions in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformElement/WebformMarkupBase.php \Drupal\webform\Plugin\WebformElement\WebformMarkupBase::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 WebformMarkupBase::getElementSelectorOptions()
View::getElementSelectorOptions in src/Plugin/WebformElement/View.php
Get an element's selectors as options.

File

src/Plugin/WebformElement/WebformMarkupBase.php, line 135

Class

WebformMarkupBase
Provides a base 'markup' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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