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

View File

@@ -1,4 +1,7 @@
<!-- column titles --> <!-- column titles -->
<?= $this->hook->render('template:board:table:column:before-header-row', array('swimlane' => $swimlane)) ?>
<tr class="board-swimlane-columns-<?= $swimlane['id'] ?>"> <tr class="board-swimlane-columns-<?= $swimlane['id'] ?>">
<?php foreach ($swimlane['columns'] as $column): ?> <?php foreach ($swimlane['columns'] as $column): ?>
<th class="board-column-header board-column-header-<?= $column['id'] ?>" data-column-id="<?= $column['id'] ?>"> <th class="board-column-header board-column-header-<?= $column['id'] ?>" data-column-id="<?= $column['id'] ?>">
@@ -89,3 +92,5 @@
</th> </th>
<?php endforeach ?> <?php endforeach ?>
</tr> </tr>
<?= $this->hook->render('template:board:table:column:after-header-row', array('swimlane' => $swimlane)) ?>