summaryrefslogtreecommitdiff
path: root/app/Template
diff options
context:
space:
mode:
authorgusthoff <gusthoff@gusthoff.com>2017-02-25 14:31:16 +0100
committergusthoff <gusthoff@gusthoff.com>2017-02-25 14:31:16 +0100
commit80132d3ff868221dff4a2729ff78482545cb9ab2 (patch)
tree55d7ea8abffd8951a03e4fda3f28078dfb69734d /app/Template
parent8cd45e8dd24b388d2464f2d05c5acdd28f2855de (diff)
Added hooks before and after the column header row
Diffstat (limited to 'app/Template')
-rw-r--r--app/Template/board/table_column.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Template/board/table_column.php b/app/Template/board/table_column.php
index c2d6b9fc..9d2815ff 100644
--- a/app/Template/board/table_column.php
+++ b/app/Template/board/table_column.php
@@ -1,4 +1,7 @@
<!-- column titles -->
+
+<?= $this->hook->render('template:board:table:column:before-header-row', array('swimlane' => $swimlane)) ?>
+
<tr class="board-swimlane-columns-<?= $swimlane['id'] ?>">
<?php foreach ($swimlane['columns'] as $column): ?>
<th class="board-column-header board-column-header-<?= $column['id'] ?>" data-column-id="<?= $column['id'] ?>">
@@ -89,3 +92,5 @@
</th>
<?php endforeach ?>
</tr>
+
+<?= $this->hook->render('template:board:table:column:after-header-row', array('swimlane' => $swimlane)) ?>