You are here

public function TextTrimmedFormatter::viewElements in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php \Drupal\text\Plugin\Field\FieldFormatter\TextTrimmedFormatter::viewElements()

Builds a renderable array for a field value.

Parameters

\Drupal\Core\Field\FieldItemListInterface $items: The field values to be rendered.

string $langcode: The language that should be used to render the field.

Return value

array A renderable array for $items, as an array of child elements keyed by consecutive numeric indexes starting from 0.

Overrides FormatterInterface::viewElements

File

core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php, line 70

Class

TextTrimmedFormatter
Plugin implementation of the 'text_trimmed' formatter.

Namespace

Drupal\text\Plugin\Field\FieldFormatter

Code

public function viewElements(FieldItemListInterface $items, $langcode) {
  $elements = [];
  $render_as_summary = function (&$element) {

    // Make sure any default #pre_render callbacks are set on the element,
    // because text_pre_render_summary() must run last.
    $element += \Drupal::service('element_info')
      ->getInfo($element['#type']);

    // Add the #pre_render callback that renders the text into a summary.
    $element['#pre_render'][] = [
      TextTrimmedFormatter::class,
      'preRenderSummary',
    ];

    // Pass on the trim length to the #pre_render callback via a property.
    $element['#text_summary_trim_length'] = $this
      ->getSetting('trim_length');
  };

  // 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' => NULL,
      '#format' => $item->format,
      '#langcode' => $item
        ->getLangcode(),
    ];
    if ($this
      ->getPluginId() == 'text_summary_or_trimmed' && !empty($item->summary)) {
      $elements[$delta]['#text'] = $item->summary;
    }
    else {
      $elements[$delta]['#text'] = $item->value;
      $render_as_summary($elements[$delta]);
    }
  }
  return $elements;
}