TestFieldNoSettingsFormatter.php

Same filename and directory in other branches
  1. 8.9.x core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php
  2. 10 core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php
  3. 11.x core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php

Namespace

Drupal\field_test\Plugin\Field\FieldFormatter

File

core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php

View source
<?php

namespace Drupal\field_test\Plugin\Field\FieldFormatter;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;

/**
 * Plugin implementation of the 'field_no_settings' formatter.
 *
 * @FieldFormatter(
 *   id = "field_no_settings",
 *   label = @Translation("Field no settings"),
 *   field_types = {
 *     "test_field",
 *   },
 *   weight = -10
 * )
 */
class TestFieldNoSettingsFormatter extends FormatterBase {
    
    /**
     * {@inheritdoc}
     */
    public function viewElements(FieldItemListInterface $items, $langcode) {
        $elements = [];
        foreach ($items as $delta => $item) {
            // This formatter only needs to output raw for testing.
            $elements[$delta] = [
                '#markup' => $item->value,
            ];
        }
        return $elements;
    }

}

Classes

Title Deprecated Summary
TestFieldNoSettingsFormatter Plugin implementation of the 'field_no_settings' formatter.

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