Lines Matching refs:tpl

1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
4 <?php if ($tpl->param('id') != ''): ?>
5 <?php $url = $tpl->url('thread_report', 'action', 'update', 'id', $tpl->param('id')) ?>
7 <?php $url = $tpl->url('thread_report', 'action', 'add') ?>
10 <?php if ($tpl->param('id') != ''): ?>
11 <?php $type = $tpl->get('thread')->type ?>
13 <?php $type = $tpl->param('type') ?>
27 <?php if ($tpl->param('id') != ''): ?>
28 <?php $class = 'pr' . $tpl->get('thread')->priority ?>
32 <?php if ($tpl->param('action') == 'edit'): ?>
34 <label for="id"><?php echo $tpl->getLang('id') ?>:</label>
35 <span><strong>#<?php echo $tpl->get('thread')->id ?></strong></span>
40 $tpl->get('thread')->acl_of('label_id') >= BEZ_PERMISSION_CHANGE): ?>
42 <label for="label_id"><?php echo $tpl->getLang('type') ?>:</label>
45 <option <?php if ($tpl->value('label_id') == '') echo 'selected' ?>
46 value="">--- <?php echo $tpl->getLang('issue_type_no_specified') ?> ---</option>
47 <?php foreach ($tpl->get('labels') as $label): ?>
48 <option <?php if ($tpl->value('label_id') == $label->id) echo 'selected' ?>
56 <?php if ($tpl->get('thread')->acl_of('coordinator') >= BEZ_PERMISSION_CHANGE): ?>
58 <label for="coordinator"><?php echo $tpl->getLang('coordinator') ?>:</label>
61 <option value="">--- <?php echo $tpl->getLang('select') ?>---</option>
62 <?php foreach ($tpl->get('users') as $nick => $name): ?>
63 <option <?php if ($tpl->value('coordinator') == $nick) echo 'selected' ?>
72 <label for="title"><?php echo $tpl->getLang('title') ?>:</label>
74 <input name="title" id="title" value="<?php echo $tpl->value('title') ?>" data-validation="required">
79 <label for="content"><?php echo $tpl->getLang('description') ?>:</label>
82 <textarea name="content" id="content" class="edit" data-validation="required"><?php echo $tpl->value('content') ?></textarea>
86 <?php if ($tpl->get('thread')->acl_of('private') >= BEZ_PERMISSION_CHANGE): ?>
88 <label for="private"><?php echo $tpl->getLang('private') ?>:</label>
89 <span><input <?php if ($tpl->value('private') == '1') echo 'checked' ?>
97 <input type="submit" value="<?php echo $tpl->getLang('save') ?>">&nbsp;&nbsp;
99 <?php if ($tpl->param('id') != ''): ?>
100 <?php $url = $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>
102 <?php $url = $tpl->url('threads') ?>
106 <?php echo $tpl->getLang('cancel')?>