Lines Matching refs:tpl
1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <form action="<?php echo $tpl->url('types') ?>" method="POST">
8 <?php foreach ($tpl->get('labels') as $label): ?>
10 <?php if ( in_array($tpl->param('action'), array('edit', 'update')) &&
11 $tpl->param('id') == $label->id): ?>
14 <input name="name" value="<?php echo $tpl->value('name') ?>" />
17 <button name="action" value="update"><?php echo $tpl->getLang('save') ?></button>
18 <a href="<?php echo $tpl->url('types') ?>">
19 <?php echo $tpl->getLang('cancel') ?>
25 <a href="<?php echo $tpl->url('types', 'action', 'edit', 'id', $label->id) ?>">
26 <?php echo $tpl->getLang('edit') ?>
31 <a onclick="return confirm('<?php echo $tpl->getLang('js')['remove_confirm'] ?>')"
32 href="<?php echo $tpl->url('types', 'action', 'remove', 'id', $label->id) ?>">
33 <?php echo $tpl->getLang('delete') ?>
40 <a href="<?php echo $tpl->url('threads', 'label_id', $label->id) ?>">
46 <?php if ( $tpl->param('action') !== 'edit' &&
47 $tpl->param('action') !== 'update'): ?>
49 <td><input name="name" value="<?php echo $tpl->value('name') ?>" /></td>
51 <button name="action" value="add"><?php echo $tpl->getLang('save') ?></button>