public function ElementBase::getSaveableProperties in Form Builder 7.2
Get a list of properties that are supported in any way by this element.
This returns a list of all supported properties within an element, even if some of those properties do not have an interface for editing or are only used internally by the module providing the form type this element is being saved in.
Return value
A non-indexed list of properties that may be saved for this element.
Overrides ElementInterface::getSaveableProperties
1 call to ElementBase::getSaveableProperties()
- ElementBase::configurationSubmit in src/
ElementBase.php - Submit handler for the configuration form.
File
- src/
ElementBase.php, line 75
Class
Namespace
Drupal\form_builderCode
public function getSaveableProperties() {
return $this->params['properties'];
}