summaryrefslogtreecommitdiff
path: root/app/functions.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-14 17:18:13 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-14 17:18:13 -0500
commit8c8692cd4d7a7f6872f79805da7ef89075cbcc4b (patch)
tree2ba0708d5114576022a2645e28a825640ade9fd1 /app/functions.php
parent35382583dbd0fd9920bc9df1f04363b12fcec657 (diff)
parent0c60489b08379c7fa5e7fb2417e0ad20b4a1dadf (diff)
Merge pull-request #615
Diffstat (limited to 'app/functions.php')
-rw-r--r--app/functions.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/functions.php b/app/functions.php
index d45e78e7..a748f005 100644
--- a/app/functions.php
+++ b/app/functions.php
@@ -66,3 +66,28 @@ function dt($format, $timestamp)
function p($value, $t1, $t2) {
return $value > 1 ? $t2 : $t1;
}
+
+/**
+ * Get the age of an item in quasi human readable format.
+ * It's in this format: <1h , NNh, NNd
+ *
+ * @access public
+ * @param int $time
+ * Unix timestamp of the artifact for which age will be calculated
+ * @param int $currenttime
+ * Comepare with timestamp. Default current unix timestamp
+ * @return string
+ */
+function getAgeShort($time, $currenttime = NULL) {
+ if (! $currenttime) {
+ $currenttime = time ();
+ }
+ $diff = $currenttime - $time;
+
+ if ($diff < 3600)
+ return "<1h";
+ elseif ($diff < 86400) {
+ return intval ( ($diff / 3600) ) . "h";
+ }
+ return intval ( ((floor ( $currenttime ) - floor ( $time )) / 86400) ) . "d";
+}