protected function WebformElementBase::getElementSelectorInputsOptions in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformElementBase.php \Drupal\webform\Plugin\WebformElementBase::getElementSelectorInputsOptions()
Get an element's (sub)inputs selectors as options.
Parameters
array $element: An element.
Return value
array An array of element (sub)input selectors.
1 call to WebformElementBase::getElementSelectorInputsOptions()
- WebformElementBase::getElementSelectorOptions in src/
Plugin/ WebformElementBase.php - Get an element's selectors as options.
9 methods override WebformElementBase::getElementSelectorInputsOptions()
- DateList::getElementSelectorInputsOptions in src/
Plugin/ WebformElement/ DateList.php - Get an element's (sub)inputs selectors as options.
- DateTime::getElementSelectorInputsOptions in src/
Plugin/ WebformElement/ DateTime.php - Get an element's (sub)inputs selectors as options.
- OptionsBase::getElementSelectorInputsOptions in src/
Plugin/ WebformElement/ OptionsBase.php - Get an element's (sub)inputs selectors as options.
- PasswordConfirm::getElementSelectorInputsOptions in src/
Plugin/ WebformElement/ PasswordConfirm.php - Get an element's (sub)inputs selectors as options.
- TextFormat::getElementSelectorInputsOptions in src/
Plugin/ WebformElement/ TextFormat.php - Get an element's (sub)inputs selectors as options.
File
- src/
Plugin/ WebformElementBase.php, line 2279
Class
- WebformElementBase
- Provides a base class for a webform element.
Namespace
Drupal\webform\PluginCode
protected function getElementSelectorInputsOptions(array $element) {
return [];
}