TextSummaryOrTrimmedFormatter.php

Definition of Drupal\text\Plugin\field\formatter\TextSummaryOrTrimmedFormatter.

Namespace

Drupal\text\Plugin\field\formatter

File

drupal/core/modules/field/modules/text/lib/Drupal/text/Plugin/field/formatter/TextSummaryOrTrimmedFormatter.php
View source
<?php

/**
 * @file
 *
 * Definition of Drupal\text\Plugin\field\formatter\TextSummaryOrTrimmedFormatter.
 */
namespace Drupal\text\Plugin\field\formatter;

use Drupal\Core\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;

/**
 * Plugin implementation of the 'text_summary_or_trimmed' formatter.
 *
 * @Plugin(
 *   id = "text_summary_or_trimmed",
 *   module = "text",
 *   label = @Translation("Summary or trimmed"),
 *   field_types = {
 *     "text_with_summary"
 *   },
 *   settings = {
 *     "trim_length" = "600"
 *   }
 * )
 */
class TextSummaryOrTrimmedFormatter extends TextTrimmedFormatter {

}

Classes

Namesort descending Description
TextSummaryOrTrimmedFormatter Plugin implementation of the 'text_summary_or_trimmed' formatter.