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"></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"></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 <br> 74 <?php endif ?> 75 <?php endforeach ?> 76 <?php if ($tpl->get('thread')->user_is_coordinator()): ?> 77 <?php if ( $tpl->param('action') == 'task_add' && 78 $tpl->param('kid') == $tpl->get('thread_comment')->id): ?> 79 <?php include 'task_form.php' ?> 80 <?php elseif ( $tpl->get('thread_comment')->type != 'comment' && 81 $tpl->get('thread')->can_add_tasks() && 82 $tpl->param('action') != 'task_edit'): ?> 83 <div class="bez_second_lv_buttons" style="margin-top:10px"> 84 <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"> 85 <span class="bez_awesome"></span> 86 <?php if ($tpl->get('thread_comment')->type == 'cause_real'): ?> 87 <?php echo $tpl->getLang('corrective_action_add') ?> 88 <?php else: ?> 89 <?php echo $tpl->getLang('preventive_action_add') ?> 90 <?php endif ?> 91 </a> 92 </div> 93 <?php endif ?> 94 <?php endif ?> 95 </div> 96 <?php endif ?> 97 98 </div> 99</div> 100