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 $tpl->get('thread_comment')->acl_of('type') >= BEZ_PERMISSION_CHANGE): ?> 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"></span> 44 </a> 45 <?php if ($tpl->get('thread_comment')->task_count == 0): ?> 46 <a class="bez_comment_button bez_commcause_delete_prompt" 47 data-kid="<?php echo $tpl->get('thread_comment')->id ?>" 48 href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'commcause_delete', 'kid', $tpl->get('thread_comment')->id) ?>"> 49 <span class="bez_awesome"></span> 50 </a> 51 <?php endif ?> 52 <?php endif ?> 53 </div> 54 <?php endif ?> 55 </h2> 56 <div class="bez_content"> 57 <?php echo $tpl->get('thread_comment')->content_html; ?> 58 </div> 59 </div> 60 61 <?php if (strpos($tpl->get('thread_comment')->type, 'cause') === 0): ?> 62 <?php if ($tpl->get('tasks ' . $tpl->get('thread_comment')->id) == '') 63 $tpl->set('causes_without_tasks', true) ?> 64 <div style="margin-top: 10px; margin-left: 40px"> 65 <?php foreach ($tpl->get('tasks ' . $tpl->get('thread_comment')->id, array()) as $task): ?> 66 <?php $tpl->set('task', $task) ?> 67 <?php if ( $tpl->param('action') == 'task_edit' && 68 $tpl->param('tid') == $task->id): ?> 69 <?php include 'task_form.php' ?> 70 <?php else: ?> 71 <?php include 'task_box.php' ?> 72 <?php endif ?> 73 <?php endforeach ?> 74 <?php if ($tpl->get('thread')->user_is_coordinator()): ?> 75 <?php if ( $tpl->param('action') == 'task_add' && 76 $tpl->param('kid') == $tpl->get('thread_comment')->id): ?> 77 <?php include 'task_form.php' ?> 78 <?php elseif ( $tpl->get('thread_comment')->type != 'comment' && 79 $tpl->get('thread')->state == 'opened' && 80 $tpl->param('action') != 'task_edit'): ?> 81 <div class="bez_second_lv_buttons"> 82 <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"> 83 <span class="bez_awesome"></span> 84 <?php if ($tpl->get('thread_comment')->type == 'cause_real'): ?> 85 <?php echo $tpl->getLang('corrective_action_add') ?> 86 <?php else: ?> 87 <?php echo $tpl->getLang('preventive_action_add') ?> 88 <?php endif ?> 89 </a> 90 </div> 91 <?php endif ?> 92 <?php endif ?> 93 </div> 94 <?php endif ?> 95 96 </div> 97</div> 98