You are here

public function views_xml_backend_handler_field_date::render in Views XML Backend 7

Same name and namespace in other branches
  1. 6 handlers/views_xml_backend_handler_field_date.inc \views_xml_backend_handler_field_date::render()

Render the field.

Parameters

array $values: The values retrieved from the database.

Overrides views_xml_backend_handler_field::render

File

handlers/views_xml_backend_handler_field_date.inc, line 53
Contains views_xml_backend_handler_field_date.

Class

views_xml_backend_handler_field_date
A handler to provide proper displays for dates.

Code

public function render($values) {
  $value = $this
    ->get_value($values);

  // We assume if the date is numeric, then it already is a unix timestamp.
  if (!is_numeric($value)) {
    $value = strtotime($value);
  }
  $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) {
    $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, NULL, 'en');
        }
        return format_date($value, $format, $custom_format);
      default:
        return format_date($value, $format);
    }
  }
}