You are here

public function YamlFormEntityReferenceLinkFormatter::settingsSummary in YAML Form 8

Returns a short summary for the current formatter settings.

If an empty result is returned, a UI can still be provided to display a settings form in case the formatter has configurable settings.

Return value

string[] A short summary of the formatter settings.

Overrides FormatterBase::settingsSummary

File

src/Plugin/Field/FieldFormatter/YamlFormEntityReferenceLinkFormatter.php, line 100

Class

YamlFormEntityReferenceLinkFormatter
Plugin implementation of the 'Link to form' formatter.

Namespace

Drupal\yamlform\Plugin\Field\FieldFormatter

Code

public function settingsSummary() {
  $summary = [];
  $summary[] = $this
    ->t('Label: @label', [
    '@label' => $this
      ->getSetting('label'),
  ]);
  return $summary;
}