Add support for array in automatic actions

This commit is contained in:
Frederic Guillot 2017-10-17 14:04:21 -07:00
parent 41c2ab0c24
commit 5ad1a42a34
2 changed files with 8 additions and 1 deletions

View File

@ -45,7 +45,11 @@
</li>
<?php foreach ($action['params'] as $param_name => $param_value): ?>
<li>
<?= $this->text->in($param_name, $available_params[$action['action_name']]) ?> =
<?php if (isset($available_params[$action['action_name']][$param_name]) && is_array($available_params[$action['action_name']][$param_name])): ?>
<?= $this->text->e(ucfirst($param_name)) ?> =
<?php else: ?>
<?= $this->text->in($param_name, $available_params[$action['action_name']]) ?> =
<?php endif ?>
<strong>
<?php if ($this->text->contains($param_name, 'column_id')): ?>
<?= $this->text->in($param_value, $columns_list) ?>

View File

@ -42,6 +42,9 @@
<?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 elseif (is_array($param_desc)): ?>
<?= $this->form->label(ucfirst($param_name), $param_name) ?>
<?= $this->form->select('params['.$param_name.']', $param_desc, $values) ?>
<?php else: ?>
<?= $this->form->label($param_desc, $param_name) ?>
<?= $this->form->text('params['.$param_name.']', $values) ?>