Lines Matching refs:tpl
1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <form action="<?php echo $tpl->url('task_programs') ?>" method="POST">
8 <?php foreach ($tpl->get('task_programs') as $task_program): ?>
10 <?php if ( in_array($tpl->param('action'), array('edit', 'update')) &&
11 $tpl->param('id') == $task_program->id): ?>
15 <input name="name" value="<?php echo $tpl->value('name') ?>" />
18 <button name="action" value="update"><?php echo $tpl->getLang('save') ?></button>
19 <a href="<?php echo $tpl->url('task_programs') ?>">
20 <?php echo $tpl->getLang('cancel') ?>
26 <a href="<?php echo $tpl->url('task_programs', 'action', 'edit', 'id', $task_program->id) ?>">
27 <?php echo $tpl->getLang('edit') ?>
32 <a onclick="return confirm('<?php echo $tpl->getLang('js')['remove_confirm'] ?>')"
33 href="<?php echo $tpl->url('task_programs', 'action', 'remove', 'id', $task_program->id) ?>">
34 <?php echo $tpl->getLang('delete') ?>
41 <a href="<?php echo $tpl->url('tasks', 'task_program_id', $task_program->id) ?>">
47 <?php if ( $tpl->param('action') !== 'edit' &&
48 $tpl->param('action') != 'update'): ?>
50 <td><input name="name" value="<?php echo $tpl->value('name') ?>" /></td>
52 <button name="action" value="add"><?php echo $tpl->getLang('save') ?></button>