summaryrefslogtreecommitdiff
path: root/app/Template/action/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/action/index.php')
-rw-r--r--app/Template/action/index.php40
1 files changed, 20 insertions, 20 deletions
diff --git a/app/Template/action/index.php b/app/Template/action/index.php
index e388fbc9..9e98554c 100644
--- a/app/Template/action/index.php
+++ b/app/Template/action/index.php
@@ -15,25 +15,25 @@
<?php foreach ($actions as $action): ?>
<tr>
- <td><?= $this->inList($action['event_name'], $available_events) ?></td>
- <td><?= $this->inList($action['action_name'], $available_actions) ?></td>
+ <td><?= $this->text->in($action['event_name'], $available_events) ?></td>
+ <td><?= $this->text->in($action['action_name'], $available_actions) ?></td>
<td>
<ul>
<?php foreach ($action['params'] as $param): ?>
<li>
- <?= $this->inList($param['name'], $available_params) ?> =
+ <?= $this->text->in($param['name'], $available_params) ?> =
<strong>
- <?php if ($this->contains($param['name'], 'column_id')): ?>
- <?= $this->inList($param['value'], $columns_list) ?>
- <?php elseif ($this->contains($param['name'], 'user_id')): ?>
- <?= $this->inList($param['value'], $users_list) ?>
- <?php elseif ($this->contains($param['name'], 'project_id')): ?>
- <?= $this->inList($param['value'], $projects_list) ?>
- <?php elseif ($this->contains($param['name'], 'color_id')): ?>
- <?= $this->inList($param['value'], $colors_list) ?>
- <?php elseif ($this->contains($param['name'], 'category_id')): ?>
- <?= $this->inList($param['value'], $categories_list) ?>
- <?php elseif ($this->contains($param['name'], 'label')): ?>
+ <?php if ($this->text->contains($param['name'], 'column_id')): ?>
+ <?= $this->text->in($param['value'], $columns_list) ?>
+ <?php elseif ($this->text->contains($param['name'], 'user_id')): ?>
+ <?= $this->text->in($param['value'], $users_list) ?>
+ <?php elseif ($this->text->contains($param['name'], 'project_id')): ?>
+ <?= $this->text->in($param['value'], $projects_list) ?>
+ <?php elseif ($this->text->contains($param['name'], 'color_id')): ?>
+ <?= $this->text->in($param['value'], $colors_list) ?>
+ <?php elseif ($this->text->contains($param['name'], 'category_id')): ?>
+ <?= $this->text->in($param['value'], $categories_list) ?>
+ <?php elseif ($this->text->contains($param['name'], 'label')): ?>
<?= $this->e($param['value']) ?>
<?php endif ?>
</strong>
@@ -42,7 +42,7 @@
</ul>
</td>
<td>
- <?= $this->a(t('Remove'), 'action', 'confirm', array('project_id' => $project['id'], 'action_id' => $action['id'])) ?>
+ <?= $this->url->link(t('Remove'), 'action', 'confirm', array('project_id' => $project['id'], 'action_id' => $action['id'])) ?>
</td>
</tr>
<?php endforeach ?>
@@ -51,12 +51,12 @@
<?php endif ?>
<h3><?= t('Add an action') ?></h3>
-<form method="post" action="<?= $this->u('action', 'event', array('project_id' => $project['id'])) ?>" class="listing">
- <?= $this->formCsrf() ?>
- <?= $this->formHidden('project_id', $values) ?>
+<form method="post" action="<?= $this->url->href('action', 'event', array('project_id' => $project['id'])) ?>" class="listing">
+ <?= $this->form->csrf() ?>
+ <?= $this->form->hidden('project_id', $values) ?>
- <?= $this->formLabel(t('Action'), 'action_name') ?>
- <?= $this->formSelect('action_name', $available_actions, $values) ?><br/>
+ <?= $this->form->label(t('Action'), 'action_name') ?>
+ <?= $this->form->select('action_name', $available_actions, $values) ?><br/>
<div class="form-actions">
<input type="submit" value="<?= t('Next step') ?>" class="btn btn-blue"/>