diff options
author | David Almond <david.almond@f-grp.com> | 2016-08-17 13:13:38 +0100 |
---|---|---|
committer | David Almond <david.almond@f-grp.com> | 2016-08-17 13:13:38 +0100 |
commit | ba99955771bf326753e371d400d91ac4f6065581 (patch) | |
tree | 52d42b3edeed13db4fb3e00fc6fe3aa28ab37134 /app/Template/action_creation/params.php | |
parent | 98efcf21e355ed6ac3827058b99df86ca67c75bb (diff) | |
parent | e8ec7861af9205898d9ff2d5d7ca76a31224044b (diff) |
Merge branch '1032' into 'stable'
1032
See merge request !1
Diffstat (limited to 'app/Template/action_creation/params.php')
-rw-r--r-- | app/Template/action_creation/params.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/Template/action_creation/params.php b/app/Template/action_creation/params.php index fa892177..bcf863d7 100644 --- a/app/Template/action_creation/params.php +++ b/app/Template/action_creation/params.php @@ -41,10 +41,13 @@ <?php elseif ($this->text->contains($param_name, 'duration')): ?> <?= $this->form->label($param_desc, $param_name) ?> <?= $this->form->number('params['.$param_name.']', $values) ?> - <?php else: ?> + <?php elseif ($this->text->contains($param_name, 'swimlane_id')): ?> + <?= $this->form->label($param_desc, $param_name) ?> + <?= $this->form->select('params['.$param_name.']', $swimlane_list, $values) ?> + <?php else: ?> <?= $this->form->label($param_desc, $param_name) ?> <?= $this->form->text('params['.$param_name.']', $values) ?> - <?php endif ?> + <?php endif ?> <?php endforeach ?> <div class="form-actions"> |