diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-14 18:55:55 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-14 18:55:55 -0500 |
commit | 23346d5e76a171efb407612dc54a92740863dfbc (patch) | |
tree | 650a2d8063b79d20a71ce4ef2fb3aca1e31c2409 /app/functions.php | |
parent | 8c8692cd4d7a7f6872f79805da7ef89075cbcc4b (diff) |
Move function to the right place (pull-request) and improve board task icons
Diffstat (limited to 'app/functions.php')
-rw-r--r-- | app/functions.php | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/app/functions.php b/app/functions.php index a748f005..439375be 100644 --- a/app/functions.php +++ b/app/functions.php @@ -63,31 +63,9 @@ function dt($format, $timestamp) * @todo Improve this function * @return mixed */ -function p($value, $t1, $t2) { +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"; -} |