From e88ae54bef268e455b6d6028a697e9dbd98a7853 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 7 Dec 2024 20:41:13 +0000 Subject: add more indicators and a new function to return relative time in the past and the future --- include/datetime.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'include') diff --git a/include/datetime.php b/include/datetime.php index 2182d7c43..e23a11741 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -268,6 +268,40 @@ function relative_date($posted_date, $format = null) { return $abs; } + +function relative_time($timestamp) { + $timestamp = datetime_convert('UTC', date_default_timezone_get(), $timestamp); + + $now = new DateTime(); + $time = new DateTime($timestamp); + + $interval = $now->diff($time); + + $prefix = ''; + $appendix = ' ' . t('ago'); + + if ($time > $now) { + $prefix = t('in') . ' '; + $appendix = ''; + } + + if ($interval->y > 0) { + return $prefix . $interval->y . ' ' . plural_dates('y', $interval->y) . $appendix; + } elseif ($interval->m > 0) { + return $prefix . $interval->m . ' ' . plural_dates('m', $interval->m) . $appendix; + } elseif ($interval->d > 0) { + return $prefix . $interval->d . ' ' . plural_dates('d', $interval->d) . $appendix; + } elseif ($interval->h > 0) { + return $prefix . $interval->h . ' ' . plural_dates('h', $interval->h) . $appendix; + } elseif ($interval->i > 0) { + return $prefix . $interval->i . ' ' . plural_dates('i', $interval->i) . $appendix; + } elseif ($interval->s > 0) { + return $prefix . $interval->s . ' ' . plural_dates('s', $interval->s) . $appendix; + } else { + return t('now'); + } +} + function plural_dates($k,$n) { switch($k) { -- cgit v1.2.3