You are here

class Date in Drupal 10

Same name in this branch
  1. 10 core/lib/Drupal/Core/Render/Element/Date.php \Drupal\Core\Render\Element\Date
  2. 10 core/modules/views/src/Plugin/views/filter/Date.php \Drupal\views\Plugin\views\filter\Date
  3. 10 core/modules/views/src/Plugin/views/sort/Date.php \Drupal\views\Plugin\views\sort\Date
  4. 10 core/modules/views/src/Plugin/views/argument/Date.php \Drupal\views\Plugin\views\argument\Date
  5. 10 core/modules/views/src/Plugin/views/field/Date.php \Drupal\views\Plugin\views\field\Date
  6. 10 core/modules/datetime/src/Plugin/views/filter/Date.php \Drupal\datetime\Plugin\views\filter\Date
  7. 10 core/modules/datetime/src/Plugin/views/sort/Date.php \Drupal\datetime\Plugin\views\sort\Date
  8. 10 core/modules/datetime/src/Plugin/views/argument/Date.php \Drupal\datetime\Plugin\views\argument\Date
Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/field/Date.php \Drupal\views\Plugin\views\field\Date
  2. 9 core/modules/views/src/Plugin/views/field/Date.php \Drupal\views\Plugin\views\field\Date

A handler to provide proper displays for dates.

Plugin annotation

@ViewsField("date");

Hierarchy

  • class \Drupal\views\Plugin\views\field\Date extends \Drupal\views\Plugin\views\field\FieldPluginBase

Expanded class hierarchy of Date

3 files declare their use of Date
LastTimestamp.php in core/modules/comment/src/Plugin/views/field/LastTimestamp.php
NodeCounterTimestamp.php in core/modules/statistics/src/Plugin/views/field/NodeCounterTimestamp.php
StatisticsLastUpdated.php in core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php
23 string references to 'Date'
Date::getSortName in core/modules/views/src/Plugin/views/argument/Date.php
Datetime::processDatetime in core/lib/Drupal/Core/Datetime/Element/Datetime.php
Expands a datetime element type into date and/or time elements.
DateTimeSchemaTest::testDateTimeSchema in core/modules/datetime/tests/src/Kernel/Views/DateTimeSchemaTest.php
Tests argument plugin schema.
DbLogController::eventDetails in core/modules/dblog/src/Controller/DbLogController.php
Displays details about a specific database log message.
DbLogController::overview in core/modules/dblog/src/Controller/DbLogController.php
Displays a listing of database log messages.

... See full list

File

core/modules/views/src/Plugin/views/field/Date.php, line 18

Namespace

Drupal\views\Plugin\views\field
View source
class Date extends FieldPluginBase {

  /**
   * The date formatter service.
   *
   * @var \Drupal\Core\Datetime\DateFormatterInterface
   */
  protected $dateFormatter;

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

  /**
   * Constructs a new Date object.
   *
   * @param array $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin ID for the plugin instance.
   * @param mixed $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
   *   The date formatter service.
   * @param \Drupal\Core\Entity\EntityStorageInterface $date_format_storage
   *   The date format storage.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, DateFormatterInterface $date_formatter, EntityStorageInterface $date_format_storage) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->dateFormatter = $date_formatter;
    $this->dateFormatStorage = $date_format_storage;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('date.formatter'), $container
      ->get('entity_type.manager')
      ->getStorage('date_format'));
  }

  /**
   * {@inheritdoc}
   */
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['date_format'] = [
      'default' => 'small',
    ];
    $options['custom_date_format'] = [
      'default' => '',
    ];
    $options['timezone'] = [
      'default' => '',
    ];
    return $options;
  }

  /**
   * {@inheritdoc}
   */
  public function buildOptionsForm(&$form, FormStateInterface $form_state) {
    $date_formats = [];
    foreach ($this->dateFormatStorage
      ->loadMultiple() as $machine_name => $value) {
      $date_formats[$machine_name] = $this
        ->t('@name format: @date', [
        '@name' => $value
          ->label(),
        '@date' => $this->dateFormatter
          ->format(REQUEST_TIME, $machine_name),
      ]);
    }
    $form['date_format'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Date format'),
      '#options' => $date_formats + [
        'custom' => $this
          ->t('Custom'),
        'raw time ago' => $this
          ->t('Time ago'),
        'time ago' => $this
          ->t('Time ago (with "ago" appended)'),
        'raw time hence' => $this
          ->t('Time hence'),
        'time hence' => $this
          ->t('Time hence (with "hence" appended)'),
        'raw time span' => $this
          ->t('Time span (future dates have "-" prepended)'),
        'inverse time span' => $this
          ->t('Time span (past dates have "-" prepended)'),
        'time span' => $this
          ->t('Time span (with "ago/hence" appended)'),
      ],
      '#default_value' => $this->options['date_format'] ?? 'small',
    ];
    $form['custom_date_format'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Custom date format'),
      '#description' => $this
        ->t('If "Custom", see <a href="https://www.php.net/manual/datetime.format.php#refsect1-datetime.format-parameters" target="_blank">the PHP docs</a> for date formats. Otherwise, enter the number of different time units to display, which defaults to 2.'),
      '#default_value' => $this->options['custom_date_format'] ?? '',
    ];

    // Setup #states for all possible date_formats on the custom_date_format form element.
    foreach ([
      'custom',
      'raw time ago',
      'time ago',
      'raw time hence',
      'time hence',
      'raw time span',
      'time span',
      'raw time span',
      'inverse time span',
      'time span',
    ] as $custom_date_possible) {
      $form['custom_date_format']['#states']['visible'][] = [
        ':input[name="options[date_format]"]' => [
          'value' => $custom_date_possible,
        ],
      ];
    }
    $form['timezone'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Timezone'),
      '#description' => $this
        ->t('Timezone to be used for date output.'),
      '#options' => [
        '' => $this
          ->t('- Default site/user timezone -'),
      ] + system_time_zones(FALSE, TRUE),
      '#default_value' => $this->options['timezone'],
    ];
    foreach (array_merge([
      'custom',
    ], array_keys($date_formats)) as $timezone_date_formats) {
      $form['timezone']['#states']['visible'][] = [
        ':input[name="options[date_format]"]' => [
          'value' => $timezone_date_formats,
        ],
      ];
    }
    parent::buildOptionsForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function render(ResultRow $values) {
    $value = $this
      ->getValue($values);
    $format = $this->options['date_format'];
    if (in_array($format, [
      'custom',
      'raw time ago',
      'time ago',
      'raw time hence',
      'time hence',
      'raw time span',
      'time span',
      'raw time span',
      'inverse time span',
      'time span',
    ])) {
      $custom_format = $this->options['custom_date_format'];
    }
    if ($value) {
      $timezone = !empty($this->options['timezone']) ? $this->options['timezone'] : NULL;

      // Will be positive for a datetime in the past (ago), and negative for a
      // datetime in the future (hence).
      $time_diff = REQUEST_TIME - $value;
      switch ($format) {
        case 'raw time ago':
          return $this->dateFormatter
            ->formatTimeDiffSince($value, [
            'granularity' => is_numeric($custom_format) ? $custom_format : 2,
          ]);
        case 'time ago':
          return $this
            ->t('%time ago', [
            '%time' => $this->dateFormatter
              ->formatTimeDiffSince($value, [
              'granularity' => is_numeric($custom_format) ? $custom_format : 2,
            ]),
          ]);
        case 'raw time hence':
          return $this->dateFormatter
            ->formatTimeDiffUntil($value, [
            'granularity' => is_numeric($custom_format) ? $custom_format : 2,
          ]);
        case 'time hence':
          return $this
            ->t('%time hence', [
            '%time' => $this->dateFormatter
              ->formatTimeDiffUntil($value, [
              'granularity' => is_numeric($custom_format) ? $custom_format : 2,
            ]),
          ]);
        case 'raw time span':
          return ($time_diff < 0 ? '-' : '') . $this->dateFormatter
            ->formatTimeDiffSince($value, [
            'strict' => FALSE,
            'granularity' => is_numeric($custom_format) ? $custom_format : 2,
          ]);
        case 'inverse time span':
          return ($time_diff > 0 ? '-' : '') . $this->dateFormatter
            ->formatTimeDiffSince($value, [
            'strict' => FALSE,
            'granularity' => is_numeric($custom_format) ? $custom_format : 2,
          ]);
        case 'time span':
          $time = $this->dateFormatter
            ->formatTimeDiffSince($value, [
            'strict' => FALSE,
            'granularity' => is_numeric($custom_format) ? $custom_format : 2,
          ]);
          return $time_diff < 0 ? $this
            ->t('%time hence', [
            '%time' => $time,
          ]) : $this
            ->t('%time ago', [
            '%time' => $time,
          ]);
        case 'custom':
          if ($custom_format == 'r') {
            return $this->dateFormatter
              ->format($value, $format, $custom_format, $timezone, 'en');
          }
          return $this->dateFormatter
            ->format($value, $format, $custom_format, $timezone);
        default:
          return $this->dateFormatter
            ->format($value, $format, '', $timezone);
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Date::$dateFormatStorage protected property The date format storage.
Date::$dateFormatter protected property The date formatter service.
Date::buildOptionsForm public function
Date::create public static function
Date::defineOptions protected function
Date::render public function 1
Date::__construct public function Constructs a new Date object.