summaryrefslogtreecommitdiff
path: root/app/Template/task
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-04-24 17:03:09 -0400
committerFrederic Guillot <fred@kanboard.net>2016-04-24 17:03:09 -0400
commitf74d7ef209701bba905c0179b30f24a6e3faa5db (patch)
tree1034252a7525c24e8dc828c9e010b56faca272e8 /app/Template/task
parent51ec4b4cf86c7f4a7552f8e01cee704cc6b4b57b (diff)
Added more template hooks
Diffstat (limited to 'app/Template/task')
-rw-r--r--app/Template/task/details.php4
-rw-r--r--app/Template/task/dropdown.php2
-rw-r--r--app/Template/task/layout.php3
-rw-r--r--app/Template/task/show.php2
4 files changed, 8 insertions, 3 deletions
diff --git a/app/Template/task/details.php b/app/Template/task/details.php
index 141c4a0b..5b8b7c6d 100644
--- a/app/Template/task/details.php
+++ b/app/Template/task/details.php
@@ -1,6 +1,8 @@
<section id="task-summary">
<h2><?= $this->text->e($task['title']) ?></h2>
+ <?= $this->hook->render('template:task:details:top', array('task' => $task)) ?>
+
<div class="task-summary-container color-<?= $task['color_id'] ?>">
<div class="task-summary-column">
<ul class="no-bullet">
@@ -149,4 +151,6 @@
<?= $this->url->button('fa-play', t('Set start date'), 'taskmodification', 'start', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
</div>
<?php endif ?>
+
+ <?= $this->hook->render('template:task:details:bottom', array('task' => $task)) ?>
</section>
diff --git a/app/Template/task/dropdown.php b/app/Template/task/dropdown.php
index f98f5172..6fea3728 100644
--- a/app/Template/task/dropdown.php
+++ b/app/Template/task/dropdown.php
@@ -55,6 +55,6 @@
</li>
<?php endif ?>
- <?= $this->hook->render('template:task:dropdown') ?>
+ <?= $this->hook->render('template:task:dropdown', array('task' => $task)) ?>
</ul>
</div>
diff --git a/app/Template/task/layout.php b/app/Template/task/layout.php
index 52db5d1b..ba2cd8d5 100644
--- a/app/Template/task/layout.php
+++ b/app/Template/task/layout.php
@@ -1,5 +1,6 @@
<section id="main">
<?= $this->projectHeader->render($project, 'Listing', 'show') ?>
+ <?= $this->hook->render('template:task:layout:top', array('task' => $task)) ?>
<section
class="sidebar-container" id="task-view"
data-edit-url="<?= $this->url->href('taskmodification', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
@@ -14,4 +15,4 @@
<?= $content_for_sublayout ?>
</div>
</section>
-</section> \ No newline at end of file
+</section>
diff --git a/app/Template/task/show.php b/app/Template/task/show.php
index 86422941..8f41d653 100644
--- a/app/Template/task/show.php
+++ b/app/Template/task/show.php
@@ -34,7 +34,7 @@
'project' => $project,
)) ?>
-<?= $this->hook->render('template:task:show:before-attachements', array('task' => $task, 'project' => $project)) ?>
+<?= $this->hook->render('template:task:show:before-attachments', array('task' => $task, 'project' => $project)) ?>
<?= $this->render('task_file/show', array(
'task' => $task,
'files' => $files,