You are here

public function DateTimeCustomFormatter::viewElements in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimeCustomFormatter.php \Drupal\datetime\Plugin\Field\FieldFormatter\DateTimeCustomFormatter::viewElements()
  2. 10 core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimeCustomFormatter.php \Drupal\datetime\Plugin\Field\FieldFormatter\DateTimeCustomFormatter::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 DateTimeFormatterBase::viewElements

File

core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimeCustomFormatter.php, line 35

Class

DateTimeCustomFormatter
Plugin implementation of the 'Custom' formatter for 'datetime' fields.

Namespace

Drupal\datetime\Plugin\Field\FieldFormatter

Code

public function viewElements(FieldItemListInterface $items, $langcode) {

  // @todo Evaluate removing this method in
  // https://www.drupal.org/node/2793143 to determine if the behavior and
  // markup in the base class implementation can be used instead.
  $elements = [];
  foreach ($items as $delta => $item) {
    if (!empty($item->date)) {

      /** @var \Drupal\Core\Datetime\DrupalDateTime $date */
      $date = $item->date;
      $elements[$delta] = $this
        ->buildDate($date);
    }
  }
  return $elements;
}