xref: /plugin/bez/tpl/commcause_box.php (revision e09b232ffd94bc38ec04930c9ddc745874b0ba41)
1<?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2<a id="k<?php echo $tpl->get('thread_comment')->id ?>"></a>
3<div class="bez_comment
4	<?php echo $tpl->get('thread_comment')->type == 'comment' ? 'bez_type_0' : 'bez_cause' ?>
5	<?php
6		if ($tpl->get('thread_comment')->author == $tpl->current_user()) {
7			echo 'bez_my_comment';
8		}
9	?>">
10	<div class="bez_avatar">
11		<img src="<?php echo DOKU_URL ?>lib/plugins/bez/images/avatar_default.png" />
12	</div>
13	<div class="bez_text_comment">
14		<span class="bez_arrow-tip-container ">
15			<span class="bez_arrow-tip ">
16				<span class="bez_arrow-tip-grad"></span>
17			</span>
18		</span>
19		<div class="commcause_content">
20			<h2>
21                <a href="#k<?php echo $tpl->get('thread_comment')->id ?>">#k<?php echo $tpl->get('thread_comment')->id ?></a>
22                <strong><?php echo $tpl->user_name($tpl->get('thread_comment')->author) ?></strong>
23
24                <?php if ($tpl->get('thread_comment')->type == 'comment'): ?>
25                    <?php echo $tpl->getLang('comment_added') ?>
26                <?php else: ?>
27                    <?php echo $tpl->getLang('cause_added') ?>
28                <?php endif ?>
29                <?php echo $tpl->datetime($tpl->get('thread_comment')->create_date) ?>
30
31                <?php if (strpos($tpl->get('thread_comment')->type, 'cause') === 0): ?>
32                    <span style="color: #000;">
33                        (<?php echo $tpl->getLang($tpl->get('thread_comment')->type) ?>)
34                    </span>
35                <?php endif ?>
36
37                <?php if ($tpl->param('kid') != $tpl->get('thread_comment')->id): ?>
38                    <div class="bez_comment_buttons">
39                        <?php if (  $tpl->get('thread')->can_add_comments() &&
40                                    count($tpl->get('thread_comment')->changable_fields()) > 0): ?>
41                            <a class="bez_comment_button"
42                               href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'commcause_edit', 'kid', $tpl->get('thread_comment')->id) ?>#k_">
43                                <span class="bez_awesome">&#xf040;</span>
44                            </a>
45                            <?php if (  $tpl->get('thread_comment')->acl_of('id') >= BEZ_PERMISSION_DELETE &&
46                                        $tpl->get('thread_comment')->task_count == 0): ?>
47                                <a class="bez_comment_button bez_commcause_delete_prompt"
48                                   data-kid="<?php echo $tpl->get('thread_comment')->id ?>"
49                                   href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'commcause_delete', 'kid', $tpl->get('thread_comment')->id) ?>">
50                                    <span class="bez_awesome">&#xf00d;</span>
51                                </a>
52                            <?php endif ?>
53                        <?php endif ?>
54                    </div>
55                <?php endif ?>
56			</h2>
57			<div class="bez_content">
58				<?php echo $tpl->get('thread_comment')->content_html; ?>
59            </div>
60		</div>
61
62		<?php if (strpos($tpl->get('thread_comment')->type, 'cause') === 0): ?>
63        <?php if ($tpl->get('tasks ' . $tpl->get('thread_comment')->id) == '')
64            $tpl->set('causes_without_tasks', true) ?>
65		<div style="margin-top: 10px; margin-left: 40px">
66			<?php foreach ($tpl->get('tasks ' . $tpl->get('thread_comment')->id, array()) as $task): ?>
67				<?php $tpl->set('task', $task) ?>
68				<?php if (	$tpl->param('action') == 'task_edit' &&
69                            $tpl->param('tid') == $task->id): ?>
70					<?php include 'task_form.php' ?>
71				<?php else: ?>
72					<?php include 'task_box.php' ?>
73				<?php endif ?>
74			<?php endforeach ?>
75			<?php if ($tpl->get('thread')->user_is_coordinator()): ?>
76				<?php if (	$tpl->param('action') == 'task_add' &&
77                            $tpl->param('kid') == $tpl->get('thread_comment')->id): ?>
78					<?php include 'task_form.php' ?>
79				<?php elseif (	$tpl->get('thread_comment')->type != 'comment' &&
80                                $tpl->get('thread')->state == 'opened' &&
81                                $tpl->param('action') != 'task_edit'): ?>
82						<div class="bez_second_lv_buttons">
83							<a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'kid', $tpl->get('thread_comment')->id, 'action', 'task_add') ?>#z_" class="bez_subscribe_button">
84								<span class="bez_awesome">&#xf0fe;</span>&nbsp;&nbsp;
85								<?php if ($tpl->get('thread_comment')->type == 'cause_real'): ?>
86									<?php echo $tpl->getLang('corrective_action_add') ?>
87								<?php else: ?>
88									<?php echo $tpl->getLang('preventive_action_add') ?>
89								<?php endif ?>
90							</a>
91						</div>
92					<?php endif ?>
93			<?php endif ?>
94		</div>
95		<?php endif ?>
96
97	</div>
98</div>
99