You are here

protected function EntityListTrait::getDescription in Formatter Suite 8

Returns a brief description of the formatter.

Return value

string Returns a brief translated description of the formatter.

1 call to EntityListTrait::getDescription()
EntityListTrait::settingsForm in src/Plugin/Field/FieldFormatter/EntityListTrait.php
6 methods override EntityListTrait::getDescription()
DateTimeCustomListFormatter::getDescription in src/Plugin/Field/FieldFormatter/DateTimeCustomListFormatter.php
Returns a brief description of the formatter.
DateTimeListFormatter::getDescription in src/Plugin/Field/FieldFormatter/DateTimeListFormatter.php
Returns a brief description of the formatter.
DateTimeTimeAgoListFormatter::getDescription in src/Plugin/Field/FieldFormatter/DateTimeTimeAgoListFormatter.php
Returns a brief description of the formatter.
EntityReferenceRenderListFormatter::getDescription in src/Plugin/Field/FieldFormatter/EntityReferenceRenderListFormatter.php
Returns a brief description of the formatter.
TimestampListFormatter::getDescription in src/Plugin/Field/FieldFormatter/TimestampListFormatter.php
Returns a brief description of the formatter.

... See full list

File

src/Plugin/Field/FieldFormatter/EntityListTrait.php, line 97

Class

EntityListTrait
Formats multiple fields as a list.

Namespace

Drupal\formatter_suite\Plugin\Field\FieldFormatter

Code

protected function getDescription() {
  return $this
    ->t('Format multi-value fields as a list.');
}