class TextDefaultFormatter

Same name and namespace in other branches
  1. 11.x core/modules/text/src/Plugin/Field/FieldFormatter/TextDefaultFormatter.php \Drupal\text\Plugin\Field\FieldFormatter\TextDefaultFormatter

Plugin implementation of the 'text_default' formatter.

Plugin annotation


@FieldFormatter(
  id = "text_default",
  label = @Translation("Default"),
  field_types = {
    "text",
    "text_long",
    "text_with_summary",
  }
)

Hierarchy

Expanded class hierarchy of TextDefaultFormatter

File

core/modules/text/src/Plugin/Field/FieldFormatter/TextDefaultFormatter.php, line 21

Namespace

Drupal\text\Plugin\Field\FieldFormatter
View source
class TextDefaultFormatter extends FormatterBase {
  
  /**
   * {@inheritdoc}
   */
  public function viewElements(FieldItemListInterface $items, $langcode) {
    $elements = [];
    // The ProcessedText element already handles cache context & tag bubbling.
    // @see \Drupal\filter\Element\ProcessedText::preRenderText()
    foreach ($items as $delta => $item) {
      $elements[$delta] = [
        '#type' => 'processed_text',
        '#text' => $item->value,
        '#format' => $item->format,
        '#langcode' => $item->getLangcode(),
      ];
    }
    return $elements;
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.