aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-12-07 20:41:13 +0000
committerMario <mario@mariovavti.com>2024-12-07 20:41:13 +0000
commite88ae54bef268e455b6d6028a697e9dbd98a7853 (patch)
tree78c160441f712e0095ead75a2653c47f6510d68b /include
parentd37d181d9425abcd04b36fc0c5e947a588497599 (diff)
downloadvolse-hubzilla-e88ae54bef268e455b6d6028a697e9dbd98a7853.tar.gz
volse-hubzilla-e88ae54bef268e455b6d6028a697e9dbd98a7853.tar.bz2
volse-hubzilla-e88ae54bef268e455b6d6028a697e9dbd98a7853.zip
add more indicators and a new function to return relative time in the past and the future
Diffstat (limited to 'include')
-rw-r--r--include/datetime.php34
1 files changed, 34 insertions, 0 deletions
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) {