summaryrefslogtreecommitdiff
path: root/app/Template/task/show.php
blob: 565f0632eba263c437f90b2440476411ca77cc76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?= $this->hook->render('template:task:show:top', array('task' => $task, 'project' => $project)) ?>

<?= $this->render('task/details', array(
    'task' => $task,
    'tags' => $tags,
    'project' => $project,
    'editable' => $this->user->hasProjectAccess('TaskModificationController', 'edit', $project['id']),
)) ?>

<?php if (!empty($task['description'])): ?>
    <?= $this->hook->render('template:task:show:before-description', array('task' => $task, 'project' => $project)) ?>
    <?= $this->render('task/description', array('task' => $task)) ?>
<?php endif ?>

<?php if(!empty($subtasks)): ?>
    <?= $this->hook->render('template:task:show:before-subtasks', array('task' => $task, 'project' => $project)) ?>
    <?= $this->render('subtask/show', array(
        'task' => $task,
        'subtasks' => $subtasks,
        'project' => $project,
        'editable' => true,
    )) ?>
<?php endif ?>

<?php if (!empty($internal_links)): ?>
    <?= $this->hook->render('template:task:show:before-internal-links', array('task' => $task, 'project' => $project)) ?>
    <?= $this->render('task_internal_link/show', array(
        'task' => $task,
        'links' => $internal_links,
        'project' => $project,
        'link_label_list' => $link_label_list,
        'editable' => true,
        'is_public' => false,
    )) ?>
<?php endif ?>

<?php if (!empty($external_links)): ?>
    <?= $this->hook->render('template:task:show:before-external-links', array('task' => $task, 'project' => $project)) ?>
    <?= $this->render('task_external_link/show', array(
        'task' => $task,
        'links' => $external_links,
        'project' => $project,
    )) ?>
<?php endif ?>

<?php if (!empty($files) || !empty($images)): ?>
    <?= $this->hook->render('template:task:show:before-attachments', array('task' => $task, 'project' => $project)) ?>
    <?= $this->render('task_file/show', array(
        'task' => $task,
        'files' => $files,
        'images' => $images
    )) ?>
<?php endif ?>

<?php if (!empty($comments)): ?>
    <?= $this->hook->render('template:task:show:before-comments', array('task' => $task, 'project' => $project)) ?>
    <?= $this->render('task_comments/show', array(
        'task' => $task,
        'comments' => $comments,
        'project' => $project,
        'editable' => $this->user->hasProjectAccess('CommentController', 'edit', $project['id']),
    )) ?>
<?php endif ?>

<?= $this->hook->render('template:task:show:bottom', array('task' => $task, 'project' => $project)) ?>