You are here

TestFieldEmptyFormatter.php in Zircon Profile 8

File

core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldEmptyFormatter.php
View source
<?php

/**
 * @file
 * Contains \Drupal\field_test\Plugin\Field\FieldFormatter\TestFieldEmptyFormatter.
 */
namespace Drupal\field_test\Plugin\Field\FieldFormatter;

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

/**
 * Plugin implementation of the 'field_empty_test' formatter.
 *
 * @FieldFormatter(
 *   id = "field_empty_test",
 *   label = @Translation("Field empty test"),
 *   field_types = {
 *     "test_field",
 *   },
 *   weight = -5
 * )
 */
class TestFieldEmptyFormatter extends FormatterBase {

  /**
   * {@inheritdoc}
   */
  public static function defaultSettings() {
    return array(
      'test_empty_string' => '**EMPTY FIELD**',
    ) + parent::defaultSettings();
  }

  /**
   * {@inheritdoc}
   */
  public function viewElements(FieldItemListInterface $items, $langcode) {
    $elements = array();
    if ($items
      ->isEmpty()) {

      // For fields with no value, just add the configured "empty" value.
      $elements[0] = array(
        '#markup' => $this
          ->getSetting('test_empty_string'),
      );
    }
    else {
      foreach ($items as $delta => $item) {

        // This formatter only needs to output raw for testing.
        $elements[$delta] = array(
          '#markup' => $item->value,
        );
      }
    }
    return $elements;
  }

}

Classes

Namesort descending Description
TestFieldEmptyFormatter Plugin implementation of the 'field_empty_test' formatter.