Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / text / src / Plugin / Field / FieldFormatter / TextSummaryOrTrimmedFormatter.php
1 <?php
2
3 namespace Drupal\text\Plugin\Field\FieldFormatter;
4
5 /**
6  * Plugin implementation of the 'text_summary_or_trimmed' formatter.
7  *
8  * @FieldFormatter(
9  *   id = "text_summary_or_trimmed",
10  *   label = @Translation("Summary or trimmed"),
11  *   field_types = {
12  *     "text_with_summary"
13  *   },
14  *   quickedit = {
15  *     "editor" = "form"
16  *   }
17  * )
18  */
19 class TextSummaryOrTrimmedFormatter extends TextTrimmedFormatter {}