TestFieldEmptyFormatter.php

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

Namespace

Drupal\field_test\Plugin\Field\FieldFormatter

File

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

View source
<?php

namespace Drupal\field_test\Plugin\Field\FieldFormatter;

use Drupal\Core\Field\Attribute\FieldFormatter;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;
use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * Plugin implementation of the 'field_empty_test' formatter.
 */
class TestFieldEmptyFormatter extends FormatterBase {
    
    /**
     * {@inheritdoc}
     */
    public static function defaultSettings() {
        return [
            'test_empty_string' => '**EMPTY FIELD**',
        ] + parent::defaultSettings();
    }
    
    /**
     * {@inheritdoc}
     */
    public function viewElements(FieldItemListInterface $items, $langcode) {
        $elements = [];
        if ($items->isEmpty()) {
            // For fields with no value, just add the configured "empty" value.
            $elements[0] = [
                '#markup' => $this->getSetting('test_empty_string'),
            ];
        }
        else {
            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
TestFieldEmptyFormatter Plugin implementation of the 'field_empty_test' formatter.

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