add task on board hooks
This commit is contained in:
parent
67b0b49222
commit
f894057a54
|
|
@ -59,6 +59,8 @@
|
|||
<i class="fa fa-file-text-o"></i>
|
||||
</span>
|
||||
<?php endif ?>
|
||||
|
||||
<?= $this->hook->render('template:board:task:footer', array('task' => $task)) ?>
|
||||
|
||||
<?php if ($task['score']): ?>
|
||||
<span class="task-score"><?= $this->text->e($task['score']) ?></span>
|
||||
|
|
|
|||
|
|
@ -71,9 +71,13 @@
|
|||
<div class="task-board-closed"><i class="fa fa-ban fa-fw"></i><?= t('Closed') ?></div>
|
||||
<?php endif ?>
|
||||
|
||||
<?= $this->hook->render('template:board:private:task:before-title', array('task' => $task)) ?>
|
||||
|
||||
<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')) ?>
|
||||
</div>
|
||||
|
||||
<?= $this->hook->render('template:board:private:task:after-title', array('task' => $task)) ?>
|
||||
|
||||
<?= $this->render('board/task_footer', array(
|
||||
'task' => $task,
|
||||
|
|
|
|||
|
|
@ -18,9 +18,13 @@
|
|||
<?php endif ?>
|
||||
</span>
|
||||
|
||||
<?= $this->hook->render('template:board:public:task:before-title', array('task' => $task)) ?>
|
||||
|
||||
<div class="task-board-title">
|
||||
<?= $this->url->link($this->text->e($task['title']), 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token'])) ?>
|
||||
</div>
|
||||
|
||||
<?= $this->hook->render('template:board:public:task:after-title', array('task' => $task)) ?>
|
||||
|
||||
<?= $this->render('board/task_footer', array(
|
||||
'task' => $task,
|
||||
|
|
|
|||
|
|
@ -151,45 +151,50 @@ Template names without prefix are core templates.
|
|||
|
||||
List of template hooks:
|
||||
|
||||
| Hook | Description |
|
||||
|------------------------------------------|----------------------------------------------------|
|
||||
| `template:analytic:sidebar` | Sidebar on analytic pages |
|
||||
| `template:app:filters-helper:before` | Filter helper dropdown (top) |
|
||||
| `template:app:filters-helper:after` | Filter helper dropdown (bottom) |
|
||||
| `template:auth:login-form:before` | Login page (top) |
|
||||
| `template:auth:login-form:after` | Login page (bottom) |
|
||||
| `template:config:sidebar` | Sidebar on settings page |
|
||||
| `template:config:application ` | Application settings form |
|
||||
| `template:config:integrations` | Integration page in global settings |
|
||||
| `template:dashboard:sidebar` | Sidebar on dashboard page |
|
||||
| `template:export:sidebar` | Sidebar on export pages |
|
||||
| `template:layout:head` | Page layout `<head/>` tag |
|
||||
| `template:layout:top` | Page layout top header |
|
||||
| `template:layout:bottom` | Page layout footer |
|
||||
| `template:project:dropdown` | "Actions" menu on left in different project views |
|
||||
| `template:project:header:before` | Project filters (before) |
|
||||
| `template:project:header:after` | Project filters (after) |
|
||||
| `template:project:integrations` | Integration page in projects settings |
|
||||
| `template:project:sidebar` | Sidebar in project settings |
|
||||
| `template:project-user:sidebar` | Sidebar on project user overview page |
|
||||
| `template:task:menu` | "Actions" menu on left in different task views |
|
||||
| `template:task:dropdown` | Task dropdown menu in listing pages |
|
||||
| `template:task:sidebar` | Sidebar on task page |
|
||||
| `template:task:form:right-column` | Right column in task form |
|
||||
| `template:task:show:top ` | Show task page: top |
|
||||
| `template:task:show:bottom` | Show task page: bottom |
|
||||
| `template:task:show:before-description` | Show task page: before description |
|
||||
| `template:task:show:before-tasklinks` | Show task page: before tasklinks |
|
||||
| `template:task:show:before-subtasks` | Show task page: before subtasks |
|
||||
| `template:task:show:before-timetracking` | Show task page: before timetracking |
|
||||
| `template:task:show:before-attachements` | Show task page: before attachments |
|
||||
| `template:task:show:before-comments` | Show task page: before comments |
|
||||
| `template:user:authentication:form` | "Edit authentication" form in user profile |
|
||||
| `template:user:create-remote:form` | "Create remote user" form |
|
||||
| `template:user:external` | "External authentication" page in user profile |
|
||||
| `template:user:integrations` | Integration page in user profile |
|
||||
| `template:user:sidebar:actions` | Sidebar in user profile (section actions) |
|
||||
| `template:user:sidebar:information` | Sidebar in user profile (section information) |
|
||||
| Hook | Description |
|
||||
|--------------------------------------------|----------------------------------------------------|
|
||||
| `template:analytic:sidebar` | Sidebar on analytic pages |
|
||||
| `template:app:filters-helper:before` | Filter helper dropdown (top) |
|
||||
| `template:app:filters-helper:after` | Filter helper dropdown (bottom) |
|
||||
| `template:auth:login-form:before` | Login page (top) |
|
||||
| `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:application ` | Application settings form |
|
||||
| `template:config:integrations` | Integration page in global settings |
|
||||
| `template:dashboard:sidebar` | Sidebar on dashboard page |
|
||||
| `template:export:sidebar` | Sidebar on export pages |
|
||||
| `template:layout:head` | Page layout `<head/>` tag |
|
||||
| `template:layout:top` | Page layout top header |
|
||||
| `template:layout:bottom` | Page layout footer |
|
||||
| `template:project:dropdown` | "Actions" menu on left in different project views |
|
||||
| `template:project:header:before` | Project filters (before) |
|
||||
| `template:project:header:after` | Project filters (after) |
|
||||
| `template:project:integrations` | Integration page in projects settings |
|
||||
| `template:project:sidebar` | Sidebar in project settings |
|
||||
| `template:project-user:sidebar` | Sidebar on project user overview page |
|
||||
| `template:task:menu` | "Actions" menu on left in different task views |
|
||||
| `template:task:dropdown` | Task dropdown menu in listing pages |
|
||||
| `template:task:sidebar` | Sidebar on task page |
|
||||
| `template:task:form:right-column` | Right column in task form |
|
||||
| `template:task:show:top ` | Show task page: top |
|
||||
| `template:task:show:bottom` | Show task page: bottom |
|
||||
| `template:task:show:before-description` | Show task page: before description |
|
||||
| `template:task:show:before-tasklinks` | Show task page: before tasklinks |
|
||||
| `template:task:show:before-subtasks` | Show task page: before subtasks |
|
||||
| `template:task:show:before-timetracking` | Show task page: before timetracking |
|
||||
| `template:task:show:before-attachements` | Show task page: before attachments |
|
||||
| `template:task:show:before-comments` | Show task page: before comments |
|
||||
| `template:user:authentication:form` | "Edit authentication" form in user profile |
|
||||
| `template:user:create-remote:form` | "Create remote user" form |
|
||||
| `template:user:external` | "External authentication" page in user profile |
|
||||
| `template:user:integrations` | Integration page in user profile |
|
||||
| `template:user:sidebar:actions` | Sidebar in user profile (section actions) |
|
||||
| `template:user:sidebar:information` | Sidebar in user profile (section information) |
|
||||
|
||||
|
||||
Another template hooks can be added if necessary, just ask on the issue tracker.
|
||||
|
|
|
|||
Loading…
Reference in New Issue