You are here

public function FormBuilderElementBase::getSaveableProperties in Form Builder 7

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 FormBuilderElementInterface::getSaveableProperties

1 call to FormBuilderElementBase::getSaveableProperties()
FormBuilderElementBase::configurationSubmit in ./form_builder.classes.inc
Submit handler for the configuration form.

File

./form_builder.classes.inc, line 870

Class

FormBuilderElementBase

Code

public function getSaveableProperties() {
  return $this->params['properties'];
}