You are here

public function OpignoTrueFalseFormatterType::settingsSummary in Opigno module 8

Same name and namespace in other branches
  1. 3.x src/Plugin/Field/FieldFormatter/OpignoTrueFalseFormatterType.php \Drupal\opigno_module\Plugin\Field\FieldFormatter\OpignoTrueFalseFormatterType::settingsSummary()

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/OpignoTrueFalseFormatterType.php, line 41

Class

OpignoTrueFalseFormatterType
Plugin implementation of the 'opigno_true_false_formatter_type' formatter.

Namespace

Drupal\opigno_module\Plugin\Field\FieldFormatter

Code

public function settingsSummary() {
  $summary = [];
  return $summary;
}