summaryrefslogtreecommitdiff
path: root/app/Template/link/edit.php
blob: d9ce280c71945674d55f87d1bf04986b0016500b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="page-header">
    <h2><?= t('Link modification') ?></h2>
</div>

<form action="<?= $this->u('link', 'update', array('link_id' => $link['id'])) ?>" method="post" autocomplete="off">

    <?= $this->formCsrf() ?>
    <?= $this->formHidden('id', $values) ?>

    <?= $this->formLabel(t('Label'), 'label') ?>
    <?= $this->formText('label', $values, $errors, array('required')) ?>

    <?= $this->formLabel(t('Opposite label'), 'opposite_id') ?>
    <?= $this->formSelect('opposite_id', $labels, $values, $errors) ?>

    <div class="form-actions">
        <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
        <?= t('or') ?>
        <?= $this->a(t('cancel'), 'link', 'index') ?>
    </div>
</form>