Change table for automatic actions list
This commit is contained in:
@@ -7,16 +7,25 @@
|
|||||||
<h3><?= t('Defined actions') ?></h3>
|
<h3><?= t('Defined actions') ?></h3>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th><?= t('Event name') ?></th>
|
<th><?= t('Automatic actions') ?></th>
|
||||||
<th><?= t('Action name') ?></th>
|
|
||||||
<th><?= t('Action parameters') ?></th>
|
<th><?= t('Action parameters') ?></th>
|
||||||
<th><?= t('Action') ?></th>
|
<th><?= t('Action') ?></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<?php foreach ($actions as $action): ?>
|
<?php foreach ($actions as $action): ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?= $this->text->in($action['event_name'], $available_events) ?></td>
|
<td>
|
||||||
<td><?= $this->text->in($action['action_name'], $available_actions) ?></td>
|
<ul>
|
||||||
|
<li>
|
||||||
|
<?= t('Event name') ?> =
|
||||||
|
<strong><?= $this->text->in($action['event_name'], $available_events) ?></strong>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<?= t('Action name') ?> =
|
||||||
|
<strong><?= $this->text->in($action['action_name'], $available_actions) ?></strong>
|
||||||
|
</li>
|
||||||
|
<ul>
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach ($action['params'] as $param): ?>
|
<?php foreach ($action['params'] as $param): ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user