diff options
author | Eskiso <eSkiSo@users.noreply.github.com> | 2016-09-28 17:28:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-28 17:28:48 +0100 |
commit | 7a9ee838f02483c995216450b9b3dcfcee02e32d (patch) | |
tree | 507169675c1cd0866c802d44f0892589cde3d25f /app/Template/subtask | |
parent | 3cd709aec91bd0dbf7edcf19fcc72530884f9374 (diff) |
Added hooks for plugins
Diffstat (limited to 'app/Template/subtask')
-rw-r--r-- | app/Template/subtask/table.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Template/subtask/table.php b/app/Template/subtask/table.php index 5c60df44..a13103f0 100644 --- a/app/Template/subtask/table.php +++ b/app/Template/subtask/table.php @@ -7,6 +7,7 @@ <tr> <th class="column-40"><?= t('Title') ?></th> <th><?= t('Assignee') ?></th> + <?= $this->hook->render('template:subtask:table:header', array('values' => $values, 'errors' => $errors)) ?> <th><?= t('Time tracking') ?></th> <?php if ($editable): ?> <th class="column-5"></th> @@ -29,6 +30,7 @@ <?= $this->text->e($subtask['name'] ?: $subtask['username']) ?> <?php endif ?> </td> + <?= $this->hook->render('template:subtask:table:rows', array('subtask' => $subtask)) ?> <td> <ul class="no-bullet"> <li> |