You are here

public function DateTimePlainFormatter::viewElements in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimePlainFormatter.php \Drupal\datetime\Plugin\Field\FieldFormatter\DateTimePlainFormatter::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 FormatterInterface::viewElements

File

core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimePlainFormatter.php, line 28
Contains \Drupal\datetime\Plugin\Field\FieldFormatter\DateTimePlainFormatter.

Class

DateTimePlainFormatter
Plugin implementation of the 'Plain' formatter for 'datetime' fields.

Namespace

Drupal\datetime\Plugin\Field\FieldFormatter

Code

public function viewElements(FieldItemListInterface $items, $langcode) {
  $elements = array();
  foreach ($items as $delta => $item) {
    $output = '';
    if (!empty($item->date)) {

      /** @var \Drupal\Core\Datetime\DrupalDateTime $date */
      $date = $item->date;
      if ($this
        ->getFieldSetting('datetime_type') == 'date') {

        // A date without time will pick up the current time, use the default.
        datetime_date_default_time($date);
      }
      else {
      }
      $this
        ->setTimeZone($date);
      $output = $this
        ->formatDate($date);
    }
    $elements[$delta] = [
      '#cache' => [
        'contexts' => [
          'timezone',
        ],
      ],
      '#markup' => $output,
    ];
  }
  return $elements;
}