Automatic Actions now support Swimlanes

This commit is contained in:
dalmond
2016-08-17 12:20:12 +01:00
committed by David Almond
parent 98efcf21e3
commit 5c685a2a78
7 changed files with 18 additions and 3 deletions

View File

@@ -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">