From ce010bc12b8b0a03e662a2f4df984daa6d252fb8 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 28 Oct 2014 18:20:33 +0100 Subject: color modified date as files app does it --- controller/guicontroller.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'controller/guicontroller.php') diff --git a/controller/guicontroller.php b/controller/guicontroller.php index 6fffcb2..127daaf 100644 --- a/controller/guicontroller.php +++ b/controller/guicontroller.php @@ -157,6 +157,17 @@ class GuiController extends Controller } ); + foreach ($notes as &$note) { + $diffInDays = intval( + (time() - strtotime($note['last-change-date'])) / 86400 + ); + $value = 0 + $diffInDays; + if ($value > 160) { + $value = 160; + } + $note['dateColor'] = '#' . str_repeat(sprintf('%02X', $value), 3); + } + $res = new TemplateResponse('grauphel', 'tag'); $res->setParams( array( -- cgit v1.2.3