views_handler_field_date.inc 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * @file
  4. * Definition of views_handler_field_date.
  5. */
  6. /**
  7. * A handler to provide proper displays for dates.
  8. *
  9. * @ingroup views_field_handlers
  10. */
  11. class views_handler_field_date extends views_handler_field {
  12. function option_definition() {
  13. $options = parent::option_definition();
  14. $options['date_format'] = array('default' => 'small');
  15. $options['custom_date_format'] = array('default' => '');
  16. $options['timezone'] = array('default' => '');
  17. return $options;
  18. }
  19. function options_form(&$form, &$form_state) {
  20. $date_formats = array();
  21. $date_types = system_get_date_types();
  22. foreach ($date_types as $key => $value) {
  23. $date_formats[$value['type']] = t('@date_format format', array('@date_format' => $value['title'])) . ': ' . format_date(REQUEST_TIME, $value['type']);
  24. }
  25. $form['date_format'] = array(
  26. '#type' => 'select',
  27. '#title' => t('Date format'),
  28. '#options' => $date_formats + array(
  29. 'custom' => t('Custom'),
  30. 'raw time ago' => t('Time ago'),
  31. 'time ago' => t('Time ago (with "ago" appended)'),
  32. 'raw time hence' => t('Time hence'),
  33. 'time hence' => t('Time hence (with "hence" appended)'),
  34. 'raw time span' => t('Time span (future dates have "-" prepended)'),
  35. 'inverse time span' => t('Time span (past dates have "-" prepended)'),
  36. 'time span' => t('Time span (with "ago/hence" appended)'),
  37. ),
  38. '#default_value' => isset($this->options['date_format']) ? $this->options['date_format'] : 'small',
  39. );
  40. $form['custom_date_format'] = array(
  41. '#type' => 'textfield',
  42. '#title' => t('Custom date format'),
  43. '#description' => t('If "Custom", see the <a href="@url" target="_blank">PHP manual</a> for date formats. Otherwise, enter the number of different time units to display, which defaults to 2.', array('@url' => 'http://php.net/manual/function.date.php')),
  44. '#default_value' => isset($this->options['custom_date_format']) ? $this->options['custom_date_format'] : '',
  45. '#dependency' => array('edit-options-date-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')),
  46. );
  47. $form['timezone'] = array(
  48. '#type' => 'select',
  49. '#title' => t('Timezone'),
  50. '#description' => t('Timezone to be used for date output.'),
  51. '#options' => array('' => t('- Default site/user timezone -')) + system_time_zones(FALSE),
  52. '#default_value' => $this->options['timezone'],
  53. '#dependency' => array('edit-options-date-format' => array_merge(array('custom'), array_keys($date_formats))),
  54. );
  55. parent::options_form($form, $form_state);
  56. }
  57. function render($values) {
  58. $value = $this->get_value($values);
  59. $format = $this->options['date_format'];
  60. 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'))) {
  61. $custom_format = $this->options['custom_date_format'];
  62. }
  63. if ($value) {
  64. $timezone = !empty($this->options['timezone']) ? $this->options['timezone'] : NULL;
  65. $time_diff = REQUEST_TIME - $value; // will be positive for a datetime in the past (ago), and negative for a datetime in the future (hence)
  66. switch ($format) {
  67. case 'raw time ago':
  68. return format_interval($time_diff, is_numeric($custom_format) ? $custom_format : 2);
  69. case 'time ago':
  70. return t('%time ago', array('%time' => format_interval($time_diff, is_numeric($custom_format) ? $custom_format : 2)));
  71. case 'raw time hence':
  72. return format_interval(-$time_diff, is_numeric($custom_format) ? $custom_format : 2);
  73. case 'time hence':
  74. return t('%time hence', array('%time' => format_interval(-$time_diff, is_numeric($custom_format) ? $custom_format : 2)));
  75. case 'raw time span':
  76. return ($time_diff < 0 ? '-' : '') . format_interval(abs($time_diff), is_numeric($custom_format) ? $custom_format : 2);
  77. case 'inverse time span':
  78. return ($time_diff > 0 ? '-' : '') . format_interval(abs($time_diff), is_numeric($custom_format) ? $custom_format : 2);
  79. case 'time span':
  80. return t(($time_diff < 0 ? '%time hence' : '%time ago'), array('%time' => format_interval(abs($time_diff), is_numeric($custom_format) ? $custom_format : 2)));
  81. case 'custom':
  82. if ($custom_format == 'r') {
  83. return format_date($value, $format, $custom_format, $timezone, 'en');
  84. }
  85. return format_date($value, $format, $custom_format, $timezone);
  86. default:
  87. return format_date($value, $format, '', $timezone);
  88. }
  89. }
  90. }
  91. }