diff options
author | gusthoff <gusthoff@gusthoff.com> | 2017-02-25 14:31:16 +0100 |
---|---|---|
committer | gusthoff <gusthoff@gusthoff.com> | 2017-02-25 14:31:16 +0100 |
commit | 80132d3ff868221dff4a2729ff78482545cb9ab2 (patch) | |
tree | 55d7ea8abffd8951a03e4fda3f28078dfb69734d /app/Template/board/table_column.php | |
parent | 8cd45e8dd24b388d2464f2d05c5acdd28f2855de (diff) |
Added hooks before and after the column header row
Diffstat (limited to 'app/Template/board/table_column.php')
-rw-r--r-- | app/Template/board/table_column.php | 5 |
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)) ?> |