add task on board hooks

This commit is contained in:
Timo Litzbarski
2016-03-14 13:36:47 +00:00
parent 67b0b49222
commit f894057a54
4 changed files with 54 additions and 39 deletions

View File

@@ -60,6 +60,8 @@
</span> </span>
<?php endif ?> <?php endif ?>
<?= $this->hook->render('template:board:task:footer', array('task' => $task)) ?>
<?php if ($task['score']): ?> <?php if ($task['score']): ?>
<span class="task-score"><?= $this->text->e($task['score']) ?></span> <span class="task-score"><?= $this->text->e($task['score']) ?></span>
<?php endif ?> <?php endif ?>

View File

@@ -71,10 +71,14 @@
<div class="task-board-closed"><i class="fa fa-ban fa-fw"></i><?= t('Closed') ?></div> <div class="task-board-closed"><i class="fa fa-ban fa-fw"></i><?= t('Closed') ?></div>
<?php endif ?> <?php endif ?>
<?= $this->hook->render('template:board:private:task:before-title', array('task' => $task)) ?>
<div class="task-board-title"> <div class="task-board-title">
<?= $this->url->link($this->text->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?> <?= $this->url->link($this->text->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?>
</div> </div>
<?= $this->hook->render('template:board:private:task:after-title', array('task' => $task)) ?>
<?= $this->render('board/task_footer', array( <?= $this->render('board/task_footer', array(
'task' => $task, 'task' => $task,
'not_editable' => $not_editable, 'not_editable' => $not_editable,

View File

@@ -18,10 +18,14 @@
<?php endif ?> <?php endif ?>
</span> </span>
<?= $this->hook->render('template:board:public:task:before-title', array('task' => $task)) ?>
<div class="task-board-title"> <div class="task-board-title">
<?= $this->url->link($this->text->e($task['title']), 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token'])) ?> <?= $this->url->link($this->text->e($task['title']), 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token'])) ?>
</div> </div>
<?= $this->hook->render('template:board:public:task:after-title', array('task' => $task)) ?>
<?= $this->render('board/task_footer', array( <?= $this->render('board/task_footer', array(
'task' => $task, 'task' => $task,
'not_editable' => $not_editable, 'not_editable' => $not_editable,

View File

@@ -152,12 +152,17 @@ Template names without prefix are core templates.
List of template hooks: List of template hooks:
| Hook | Description | | Hook | Description |
|------------------------------------------|----------------------------------------------------| |--------------------------------------------|----------------------------------------------------|
| `template:analytic:sidebar` | Sidebar on analytic pages | | `template:analytic:sidebar` | Sidebar on analytic pages |
| `template:app:filters-helper:before` | Filter helper dropdown (top) | | `template:app:filters-helper:before` | Filter helper dropdown (top) |
| `template:app:filters-helper:after` | Filter helper dropdown (bottom) | | `template:app:filters-helper:after` | Filter helper dropdown (bottom) |
| `template:auth:login-form:before` | Login page (top) | | `template:auth:login-form:before` | Login page (top) |
| `template:auth:login-form:after` | Login page (bottom) | | `template:auth:login-form:after` | Login page (bottom) |
| `template:board:private:task:before-title` | Task in private board: before title |
| `template:board:private:task:after-title` | Task in private board: after title |
| `template:board:public:task:before-title` | Task in public board: before title |
| `template:board:public:task:after-title` | Task in public board: after title |
| `template:board:task:footer` | Task in board: footer |
| `template:config:sidebar` | Sidebar on settings page | | `template:config:sidebar` | Sidebar on settings page |
| `template:config:application ` | Application settings form | | `template:config:application ` | Application settings form |
| `template:config:integrations` | Integration page in global settings | | `template:config:integrations` | Integration page in global settings |