Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
TextSummaryOrTrimmedFormatter | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\text\Plugin\Field\FieldFormatter\TextSummaryOrTrimmedFormatter. | |
*/ | |
namespace Drupal\text\Plugin\Field\FieldFormatter; | |
/** | |
* Plugin implementation of the 'text_summary_or_trimmed' formatter. | |
* | |
* @FieldFormatter( | |
* id = "text_summary_or_trimmed", | |
* label = @Translation("Summary or trimmed"), | |
* field_types = { | |
* "text_with_summary" | |
* }, | |
* quickedit = { | |
* "editor" = "form" | |
* } | |
* ) | |
*/ | |
class TextSummaryOrTrimmedFormatter extends TextTrimmedFormatter { } |