protected function YamlFormElementBase::getElementSelectorInputsOptions in YAML Form 8
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 YamlFormElementBase::getElementSelectorInputsOptions()
- YamlFormElementBase::getElementSelectorOptions in src/
YamlFormElementBase.php - Get an element's selectors as options.
7 methods override YamlFormElementBase::getElementSelectorInputsOptions()
- DateList::getElementSelectorInputsOptions in src/
Plugin/ YamlFormElement/ DateList.php - Get an element's (sub)inputs selectors as options.
- DateTime::getElementSelectorInputsOptions in src/
Plugin/ YamlFormElement/ DateTime.php - Get an element's (sub)inputs selectors as options.
- OptionsBase::getElementSelectorInputsOptions in src/
Plugin/ YamlFormElement/ OptionsBase.php - Get an element's (sub)inputs selectors as options.
- PasswordConfirm::getElementSelectorInputsOptions in src/
Plugin/ YamlFormElement/ PasswordConfirm.php - Get an element's (sub)inputs selectors as options.
- TextFormat::getElementSelectorInputsOptions in src/
Plugin/ YamlFormElement/ TextFormat.php - Get an element's (sub)inputs selectors as options.
File
- src/
YamlFormElementBase.php, line 874
Class
- YamlFormElementBase
- Provides a base class for a form element.
Namespace
Drupal\yamlformCode
protected function getElementSelectorInputsOptions(array $element) {
return [];
}