You are here

StoreDateTimeFormatter.php in Commerce Core 8.2

File

modules/store/src/Plugin/Field/FieldFormatter/StoreDateTimeFormatter.php
View source
<?php

namespace Drupal\commerce_store\Plugin\Field\FieldFormatter;

use Drupal\commerce_store\CurrentStoreInterface;
use Drupal\commerce_store\Entity\Store;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Plugin implementation of the 'commerce_store_datetime' formatter.
 *
 * Used for displaying date/time values in the store timezone,
 * as opposed to the user's timezone.
 *
 * @see \Drupal\commerce_store\Plugin\Field\FieldWidget\StoreDateTimeWidget
 *
 * @FieldFormatter(
 *   id = "commerce_store_datetime",
 *   label = @Translation("Default (Store timezone)"),
 *   field_types = {
 *     "datetime"
 *   }
 * )
 */
class StoreDateTimeFormatter extends FormatterBase implements ContainerFactoryPluginInterface {

  /**
   * The current store.
   *
   * @var \Drupal\commerce_store\CurrentStoreInterface
   */
  protected $currentStore;

  /**
   * The date format storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $dateFormatStorage;

  /**
   * Constructs a new StoreDateTimeFormatter.
   *
   * @param string $plugin_id
   *   The plugin_id for the formatter.
   * @param mixed $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\Core\Field\FieldDefinitionInterface $field_definition
   *   The definition of the field to which the formatter is associated.
   * @param array $settings
   *   The formatter settings.
   * @param string $label
   *   The formatter label display setting.
   * @param string $view_mode
   *   The view mode.
   * @param array $third_party_settings
   *   Third party settings.
   * @param \Drupal\commerce_store\CurrentStoreInterface $current_store
   *   The current store.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   */
  public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, CurrentStoreInterface $current_store, EntityTypeManagerInterface $entity_type_manager) {
    parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
    $this->currentStore = $current_store;
    $this->dateFormatStorage = $entity_type_manager
      ->getStorage('date_format');
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['label'], $configuration['view_mode'], $configuration['third_party_settings'], $container
      ->get('commerce_store.current_store'), $container
      ->get('entity_type.manager'));
  }

  /**
   * {@inheritdoc}
   */
  public static function defaultSettings() {
    return [
      'date_format' => 'medium',
    ] + parent::defaultSettings();
  }

  /**
   * {@inheritdoc}
   */
  public function settingsForm(array $form, FormStateInterface $form_state) {
    $form = parent::settingsForm($form, $form_state);
    $date = new DrupalDateTime('now', $this
      ->getTimezone());

    /** @var \Drupal\Core\Datetime\DateFormatInterface[] $date_formats */
    $date_formats = $this->dateFormatStorage
      ->loadMultiple();
    $options = [];
    foreach ($date_formats as $type => $date_format) {
      $example = $date
        ->format($date_format
        ->getPattern());
      $options[$type] = $date_format
        ->label() . ' (' . $example . ')';
    }
    $form['date_format'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Date format'),
      '#description' => $this
        ->t('Choose a format for displaying the date. Be sure to set a format appropriate for the field, i.e. omitting time for a field that only has a date.'),
      '#options' => $options,
      '#default_value' => $this
        ->getSetting('date_format'),
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function settingsSummary() {
    $summary = parent::settingsSummary();
    $date_format = $this
      ->getDateFormat();
    $date = new DrupalDateTime('now', $this
      ->getTimezone());

    // Uses the same summary format as DateTimeDefaultFormatter.
    $summary[] = $this
      ->t('Format: @date_format', [
      '@date_format' => $date
        ->format($date_format
        ->getPattern()),
    ]);
    return $summary;
  }

  /**
   * {@inheritdoc}
   */
  public function viewElements(FieldItemListInterface $items, $langcode) {
    $date_pattern = $this
      ->getDateFormat()
      ->getPattern();
    $timezone = $this
      ->getTimezone();
    $store = $this->currentStore
      ->getStore();
    $elements = [];
    foreach ($items as $delta => $item) {
      if ($item->value) {
        $date = new DrupalDateTime($item->value, $timezone);
        $elements[$delta] = [
          '#theme' => 'time',
          '#text' => $date
            ->format($date_pattern),
          '#html' => FALSE,
          '#attributes' => [
            'datetime' => $date
              ->format('Y-m-d\\TH:i:sP'),
          ],
          '#cache' => [
            'contexts' => [
              'store',
            ],
          ],
        ];
        if ($store) {

          // Make sure the render cache is cleared when the store is updated.
          $cacheability = new CacheableMetadata();
          $cacheability
            ->addCacheableDependency($store);
          $cacheability
            ->applyTo($elements[$delta]);
        }
        if (!empty($item->_attributes)) {
          $elements[$delta]['#attributes'] += $item->_attributes;

          // Unset field item attributes since they have been included in the
          // formatter output and should not be rendered in the field template.
          unset($item->_attributes);
        }
      }
    }
    return $elements;
  }

  /**
   * Gets the configured date format.
   *
   * @return \Drupal\Core\Datetime\DateFormatInterface
   *   The date format.
   */
  protected function getDateFormat() {

    /** @var \Drupal\Core\Datetime\DateFormatInterface $date_format */
    $date_format = $this->dateFormatStorage
      ->load($this
      ->getSetting('date_format'));
    if (!$date_format) {

      // Guard against missing/deleted date formats.
      $date_format = $this->dateFormatStorage
        ->load('fallback');
    }
    return $date_format;
  }

  /**
   * Gets the timezone used for date formatting.
   *
   * This is the timezone of the current store, with a fallback to the
   * site timezone, in case the site doesn't have any stores yet.
   *
   * @return string
   *   The timezone.
   */
  protected function getTimezone() {
    $store = $this->currentStore
      ->getStore();
    if ($store) {
      $timezone = $store
        ->getTimezone();
    }
    else {
      $site_timezone = Store::getSiteTimezone();
      $timezone = reset($site_timezone);
    }
    return $timezone;
  }

}

Classes

Namesort descending Description
StoreDateTimeFormatter Plugin implementation of the 'commerce_store_datetime' formatter.