You are here

public function FormElementComponent::settingsSummary in Flexiform 8

Get the settings summary.

Return value

string The setting summary.

Overrides FormComponentBase::settingsSummary

File

src/Plugin/FormComponentType/FormElementComponent.php, line 147

Class

FormElementComponent
Component class for field widgets.

Namespace

Drupal\flexiform\Plugin\FormComponentType

Code

public function settingsSummary() {
  $summary = [];
  $summary += $this
    ->getPlugin()
    ->settingsSummary();
  return $summary;
}