Definition of Drupal\text\Plugin\field\formatter\TextSummaryOrTrimmedFormatter.
<?php /** * @file * * Definition of Drupal\text\Plugin\field\formatter\TextSummaryOrTrimmedFormatter. */ namespace Drupal\text\Plugin\field\formatter; use Drupal\field\Annotation\FieldFormatter; use Drupal\Core\Annotation\Translation; /** * Plugin implementation of the 'text_summary_or_trimmed' formatter. * * @FieldFormatter( * id = "text_summary_or_trimmed", * module = "text", * label = @Translation("Summary or trimmed"), * field_types = { * "text_with_summary" * }, * settings = { * "trim_length" = "600" * }, * edit = { * "editor" = "form" * } * ) */ class TextSummaryOrTrimmedFormatter extends TextTrimmedFormatter { }