Helpers refactoring
This commit is contained in:
@@ -3,15 +3,15 @@
|
||||
</div>
|
||||
|
||||
<h3><?= t('Choose an event') ?></h3>
|
||||
<form method="post" action="<?= $this->u('action', 'params', array('project_id' => $project['id'])) ?>">
|
||||
<form method="post" action="<?= $this->url->href('action', 'params', array('project_id' => $project['id'])) ?>">
|
||||
|
||||
<?= $this->formCsrf() ?>
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
<?= $this->formHidden('project_id', $values) ?>
|
||||
<?= $this->formHidden('action_name', $values) ?>
|
||||
<?= $this->form->hidden('project_id', $values) ?>
|
||||
<?= $this->form->hidden('action_name', $values) ?>
|
||||
|
||||
<?= $this->formLabel(t('Event'), 'event_name') ?>
|
||||
<?= $this->formSelect('event_name', $events, $values) ?><br/>
|
||||
<?= $this->form->label(t('Event'), 'event_name') ?>
|
||||
<?= $this->form->select('event_name', $events, $values) ?><br/>
|
||||
|
||||
<div class="form-help">
|
||||
<?= t('When the selected event occurs execute the corresponding action.') ?>
|
||||
@@ -20,6 +20,6 @@
|
||||
<div class="form-actions">
|
||||
<input type="submit" value="<?= t('Next step') ?>" class="btn btn-blue"/>
|
||||
<?= t('or') ?>
|
||||
<?= $this->a(t('cancel'), 'action', 'index', array('project_id' => $project['id'])) ?>
|
||||
<?= $this->url->link(t('cancel'), 'action', 'index', array('project_id' => $project['id'])) ?>
|
||||
</div>
|
||||
</form>
|
||||
Reference in New Issue
Block a user