Added hook for plugins

This commit is contained in:
Eskiso 2016-09-28 17:29:33 +01:00 committed by GitHub
parent 7a9ee838f0
commit a5aa423694
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<div class="tooltip-large">
<table class="table-small">
<tr>
<th class="column-80"><?= t('Subtask') ?></th>
<th class="column-70"><?= t('Subtask') ?></th>
<th><?= t('Assignee') ?></th>
</tr>
<?php foreach ($subtasks as $subtask): ?>
@ -9,6 +9,7 @@
<td>
<?= $this->subtask->toggleStatus($subtask, $task['project_id']) ?>
</td>
<?= $this->hook->render('template:board:tooltip:subtasks:rows', array('subtask' => $subtask)) ?>
<td>
<?php if (! empty($subtask['username'])): ?>
<?= $this->text->e($subtask['name'] ?: $subtask['username']) ?>