public function HtmlFieldFormatterEntityReference::settingsSummary in HTML Formatter 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 EntityReferenceLabelFormatter::settingsSummary
File
- src/
Plugin/ Field/ FieldFormatter/ HtmlFieldFormatterEntityReference.php, line 47
Class
- HtmlFieldFormatterEntityReference
- Plugin implementation of the 'entity reference label' html field formatter.
Namespace
Drupal\html_formatter\Plugin\Field\FieldFormatterCode
public function settingsSummary() {
$summary = parent::settingsSummary();
$summary = array_merge($summary, $this
->getHtmlFormatterSettingsSummary($this->settings));
return $summary;
}