From 6c7c73613aeb25cf995f61e0acda7c648a1ddf55 Mon Sep 17 00:00:00 2001 From: Andrew Berzley Date: Mon, 20 Nov 2017 14:45:33 -0500 Subject: Changed board column headings to show swimlane-column total in bold. Also, board column total to be shown at end of column heading with limit across the sum of all swimlanes. --- app/Formatter/BoardSwimlaneFormatter.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'app/Formatter') diff --git a/app/Formatter/BoardSwimlaneFormatter.php b/app/Formatter/BoardSwimlaneFormatter.php index 18db259d..17710fc3 100644 --- a/app/Formatter/BoardSwimlaneFormatter.php +++ b/app/Formatter/BoardSwimlaneFormatter.php @@ -97,6 +97,13 @@ class BoardSwimlaneFormatter extends BaseFormatter implements FormatterInterface $this->calculateStatsByColumnAcrossSwimlanes($swimlane['columns']); } + foreach($this->swimlanes as &$swimlane) { + foreach($swimlane['columns'] as $columnIndex => &$column) { + $column['column_nb_tasks'] = $this->swimlanes[0]['columns'][$columnIndex]['column_nb_tasks']; + $column['column_nb_score'] = $this->swimlanes[0]['columns'][$columnIndex]['column_score']; + } + } + return $this->swimlanes; } -- cgit v1.2.3