function OptionsKeyFormatter::viewElements

Same name and namespace in other branches
  1. 8.9.x core/modules/options/src/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php \Drupal\options\Plugin\Field\FieldFormatter\OptionsKeyFormatter::viewElements()
  2. 10 core/modules/options/src/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php \Drupal\options\Plugin\Field\FieldFormatter\OptionsKeyFormatter::viewElements()
  3. 11.x core/modules/options/src/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php \Drupal\options\Plugin\Field\FieldFormatter\OptionsKeyFormatter::viewElements()

Overrides FormatterInterface::viewElements

File

core/modules/options/src/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php, line 27

Class

OptionsKeyFormatter
Plugin implementation of the 'list_key' formatter.

Namespace

Drupal\options\Plugin\Field\FieldFormatter

Code

public function viewElements(FieldItemListInterface $items, $langcode) {
    $elements = [];
    foreach ($items as $delta => $item) {
        $elements[$delta] = [
            '#markup' => $item->value,
            '#allowed_tags' => FieldFilteredMarkup::allowedTags(),
        ];
    }
    return $elements;
}

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