Lines Matching full:echo
6 …<a href="<?php echo $tpl->url('task_form') ?>" class="bez_start_button" id="bez_report_task_button…
7 <?php echo $tpl->getLang('add_task') ?>
14 <form action="<?php echo $tpl->url('tasks') ?>" method="POST">
17 <label><?php echo $tpl->getLang('reporter') ?>:
19 <option <?php if ($tpl->value('original_poster') == '-all') echo 'selected' ?>
20 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
21 <optgroup label="<?php echo $tpl->getLang('users') ?>">
23 <option <?php if ($tpl->value('original_poster') == $nick) echo 'selected' ?>
24 value="<?php echo $nick ?>"><?php echo $name ?></option>
27 <optgroup label="<?php echo $tpl->getLang('groups') ?>">
30 <option <?php if ($tpl->value('original_poster') == $group) echo 'selected' ?>
31 value="<?php echo $group ?>"><?php echo $group ?></option>
37 <label><?php echo $tpl->getLang('class') ?>:
39 <option <?php if ($tpl->value('type') == '-all') echo 'selected' ?>
40 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
42 <option <?php if ($tpl->value('type') == $type) echo 'selected' ?>
43 value="<?php echo $type ?>"><?php echo $tpl->getLang('task_type_' . $type) ?></option>
48 <label><?php echo $tpl->getLang('state') ?>:
50 <option <?php if ($tpl->value('state') == '-all') echo 'selected' ?>
51 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
53 <option <?php if ($tpl->value('state') == $state) echo 'selected' ?>
54 value="<?php echo $state ?>"><?php echo lcfirst($tpl->getLang('task_' . $state)) ?></option>
59 <label><?php echo $tpl->getLang('task_type') ?>:
61 <option <?php if ($tpl->value('task_program_id') == '-all') echo 'selected' ?>
62 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
63 <option <?php if ($tpl->value('task_program_id') == '-none') echo 'selected' ?>
64 value="-none">-- <?php echo $tpl->getLang('none') ?> --</option>
66 <option <?php if ($tpl->value('task_program_id') == $task_program->id) echo 'selected' ?>
67 value="<?php echo $task_program->id ?>"><?php echo $task_program->name ?></option>
72 <label><?php echo $tpl->getLang('executor') ?>:
74 <option <?php if ($tpl->value('assignee') == '-all') echo 'selected' ?>
75 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
76 <optgroup label="<?php echo $tpl->getLang('users') ?>">
78 <option <?php if ($tpl->value('assignee') == $nick) echo 'selected' ?>
79 value="<?php echo $nick ?>"><?php echo $name ?></option>
82 <optgroup label="<?php echo $tpl->getLang('groups') ?>">
85 <option <?php if ($tpl->value('assignee') == $group) echo 'selected' ?>
86 value="<?php echo $group ?>"><?php echo $group ?></option>
93 <label><?php echo $tpl->getLang('description') ?>:
94 <input name="content" value="<?php echo $tpl->value('content') ?>" />
101 <option <?php if ($tpl->value('date_type') == 'plan_date') echo 'selected' ?>
102 value="plan_date"><?php echo $tpl->getLang('plan_date') ?></option>
103 <option <?php if ($tpl->value('date_type') == 'create_date') echo 'selected' ?>
104 value="create_date"><?php echo $tpl->getLang('open_date') ?></option>
105 <option <?php if ($tpl->value('date_type') == 'close_date') echo 'selected' ?>
106 value="close_date"><?php echo $tpl->getLang('close_date') ?></option>
109 <label><?php echo $tpl->getLang('month') ?>:
111 <option <?php if ($tpl->value('month') == '-all') echo 'selected' ?>
112 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
114 <option <?php if ($tpl->value('month') == $nr) echo 'selected' ?>
115 value="<?php echo $nr ?>"><?php echo $tpl->getLang($month) ?></option>
119 <label><?php echo $tpl->getLang('year') ?>:
121 <option <?php if ($tpl->value('year') == '-all') echo 'selected' ?>
122 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
124 <option <?php if ($tpl->value('year') == $year) echo 'selected' ?>
125 value="<?php echo $year ?>"><?php echo $year ?></option>
129 …<label><button name="action" value="filter" type="submit"><?php echo $tpl->getLang('filter') ?></b…
137 <form action="<?php echo $tpl->url('tasks') ?>" method="post">
143 … <option value="<?php echo $task_program->id ?>"><?php echo $task_program->name ?></option>
154 <th><?php echo $tpl->getLang('id') ?></th>
155 <th><?php echo $tpl->getLang('state') ?></th>
156 <th><?php echo $tpl->getLang('task_type') ?></th>
157 <th><?php echo $tpl->getLang('description') ?></th>
159 <th><?php echo $tpl->getLang('executor') ?></th>
160 <th><?php echo $tpl->getLang('plan') ?></th>
161 <th><?php echo $tpl->getLang('cost') ?></th>
163 <th><?php echo $tpl->getLang('closed') ?></th>
164 <th><?php echo $tpl->getLang('hours_no') ?></th>
176 …class="<?php if ($task->state == 'opened') echo 'priority_' . $task->priority ?>" data-bez-row-id=…
181 <a href="<?php echo $tpl->url('task', 'tid', $task->id) ?>">
182 <?php if ($task->thread_id != '') echo '#'.$task->thread_id ?>
183 #z<?php echo $task->id ?>
186 <?php echo inlineSVG(DOKU_PLUGIN . 'bez/images/lock-small.svg') ?>
190 <?php echo lcfirst($tpl->getLang('task_' . $task->state)) ?>
192 (<?php echo lcfirst($tpl->getLang('task_outdated')) ?>)
199 <?php echo $task->task_program_name ?>
204 <?php echo $task->content_html ?>
208 <td><?php echo $tpl->user_name($task->assignee) ?></td>
211 <?php echo $task->plan_date ?>
213 (<?php echo $tpl->date_diff_days($task->plan_date) ?>)
216 <?php echo $task->start_time ?> - <?php echo $task->finish_time ?>
224 <?php echo $task->cost ?>
232 <?php echo $tpl->date($task->close_date) ?>
239 <?php echo $hours ?>
243 <tr class="bez_desc_row task<?php echo $task->id ?>">
245 <?php echo $task->content_html ?>
250 <th><?php echo $tpl->getLang('report_total') ?></th>
252 <td colspan="<?= $colspan ?>>"><?php echo $count ?></td>
253 <td colspan="2"><?php echo $total_cost ?></td>
254 <td colspan="1"><?php echo $tpl->float_to_time($total_hours) ?></td>