function Date::render

Render the field.

Parameters

$values: The values retrieved from the database.

Overrides FieldPluginBase::render

1 call to Date::render()
LastTimestamp::render in drupal/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php
Render the field.
1 method overrides Date::render()
LastTimestamp::render in drupal/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php
Render the field.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/field/Date.php, line 82
Definition of Drupal\views\Plugin\views\field\Date.

Class

Date
A handler to provide proper displays for dates.

Namespace

Drupal\views\Plugin\views\field

Code

function render($values) {
  $value = $this
    ->getValue($values);
  $format = $this->options['date_format'];
  if (in_array($format, array(
    '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;
    $time_diff = REQUEST_TIME - $value;

    // will be positive for a datetime in the past (ago), and negative for a datetime in the future (hence)
    switch ($format) {
      case 'raw time ago':
        return format_interval($time_diff, is_numeric($custom_format) ? $custom_format : 2);
      case 'time ago':
        return t('%time ago', array(
          '%time' => format_interval($time_diff, is_numeric($custom_format) ? $custom_format : 2),
        ));
      case 'raw time hence':
        return format_interval(-$time_diff, is_numeric($custom_format) ? $custom_format : 2);
      case 'time hence':
        return t('%time hence', array(
          '%time' => format_interval(-$time_diff, is_numeric($custom_format) ? $custom_format : 2),
        ));
      case 'raw time span':
        return ($time_diff < 0 ? '-' : '') . format_interval(abs($time_diff), is_numeric($custom_format) ? $custom_format : 2);
      case 'inverse time span':
        return ($time_diff > 0 ? '-' : '') . format_interval(abs($time_diff), is_numeric($custom_format) ? $custom_format : 2);
      case 'time span':
        return t($time_diff < 0 ? '%time hence' : '%time ago', array(
          '%time' => format_interval(abs($time_diff), is_numeric($custom_format) ? $custom_format : 2),
        ));
      case 'custom':
        if ($custom_format == 'r') {
          return format_date($value, $format, $custom_format, $timezone, 'en');
        }
        return format_date($value, $format, $custom_format, $timezone);
      default:
        return format_date($value, $format, '', $timezone);
    }
  }
}