Lines Matching +full:- +full:php +full:-
1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <a id="k<?php echo $tpl->get('thread_comment')->id ?>"></a>
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()) {
11 <img src="<?php echo DOKU_URL ?>lib/plugins/bez/images/avatar_default.png" />
14 <span class="bez_arrow-tip-container ">
15 <span class="bez_arrow-tip ">
16 <span class="bez_arrow-tip-grad"></span>
21 …<a href="#k<?php echo $tpl->get('thread_comment')->id ?>">#k<?php echo $tpl->get('thread_comment')…
22 <strong><?php echo $tpl->user_name($tpl->get('thread_comment')->author) ?></strong>
24 <?php echo $tpl->getLang($tpl->get('thread_comment')->type . '_added') ?>
26 <?php echo $tpl->datetime($tpl->get('thread_comment')->create_date) ?>
29 <?php if ($tpl->param('kid') != $tpl->get('thread_comment')->id): ?>
31 <?php if ( $tpl->get('thread')->can_add_comments() &&
32 count($tpl->get('thread_comment')->changable_fields()) > 0): ?>
34 …href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'commcause_edit', 'k…
37 … <?php if ( $tpl->get('thread_comment')->acl_of('id') >= BEZ_PERMISSION_DELETE &&
38 $tpl->get('thread_comment')->task_count == 0): ?>
40 data-kid="<?php echo $tpl->get('thread_comment')->id ?>"
41 …href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'commcause_delete', …
44 <?php endif ?>
45 <?php endif ?>
47 <?php endif ?>
50 <?php echo $tpl->get('thread_comment')->content_html; ?>
54 <?php if ($tpl->get('thread_comment')->type !== 'comment'): ?>
55 <?php if ($tpl->get('tasks ' . $tpl->get('thread_comment')->id) == '')
56 $tpl->set('causes_without_tasks', true) ?>
57 <div style="margin-top: 10px; margin-left: 40px">
58 <?php foreach ($tpl->get('tasks ' . $tpl->get('thread_comment')->id, array()) as $task): ?>
59 <?php $tpl->set('task', $task) ?>
60 <?php if ( $tpl->param('action') == 'task_edit' &&
61 $tpl->param('tid') == $task->id): ?>
62 <?php include 'task_form.php' ?>
63 <?php else: ?>
64 <?php include 'task_box.php' ?>
66 <?php endif ?>
67 <?php endforeach ?>
68 <?php if ($tpl->get('thread')->user_is_coordinator()): ?>
69 <?php if ( $tpl->param('action') == 'task_add' &&
70 $tpl->param('kid') == $tpl->get('thread_comment')->id): ?>
71 <?php $tpl->set('task', $tpl->get('task_new')) ?>
72 <?php include 'task_form.php' ?>
73 <?php elseif ( $tpl->get('thread_comment')->type != 'comment' &&
74 $tpl->get('thread')->can_add_tasks() &&
75 $tpl->param('action') != 'task_edit'): ?>
76 <div class="bez_second_lv_buttons" style="margin-top:10px">
77 …<a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'kid', $tpl->get('thread_co…
79 <?php echo $tpl->getLang('action_add') ?>
82 <?php endif ?>
83 <?php endif ?>
85 <?php endif ?>