Added hooks before and after the column header row

This commit is contained in:
gusthoff 2017-02-25 14:31:16 +01:00
parent 8cd45e8dd2
commit 80132d3ff8
1 changed files with 5 additions and 0 deletions

View File

@ -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)) ?>