Lines Matching refs:value

19         <option <?php if ($tpl->value('original_poster') == '-all') echo 'selected' ?>
20 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
23 <option <?php if ($tpl->value('original_poster') == $nick) echo 'selected' ?>
24 value="<?php echo $nick ?>"><?php echo $name ?></option>
30 <option <?php if ($tpl->value('original_poster') == $group) echo 'selected' ?>
31 value="<?php echo $group ?>"><?php echo $group ?></option>
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>
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>
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>
74 <option <?php if ($tpl->value('assignee') == '-all') echo 'selected' ?>
75 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
78 <option <?php if ($tpl->value('assignee') == $nick) echo 'selected' ?>
79 value="<?php echo $nick ?>"><?php echo $name ?></option>
85 <option <?php if ($tpl->value('assignee') == $group) echo 'selected' ?>
86 value="<?php echo $group ?>"><?php echo $group ?></option>
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>
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>
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') ?></button></label>
139 <button type="submit" name="action" value="bulk_delete"><?= $tpl->getLang('delete_selected') ?></button>
143 <option value="<?php echo $task_program->id ?>"><?php echo $task_program->name ?></option>
146 <button type="submit" name="action" value="bulk_move"><?= $tpl->getLang('button_move') ?></button>
178 <td><input type="checkbox" name="task_id[]" class="plugin__bez_bulk_checkbox" value="<?= $task->id ?>"></td>