aboutsummaryrefslogtreecommitdiff
path: root/templates/forms/radio_input.php
blob: da110d1f83098ba9a671761f10b14acfbba2fe5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="formpart">
    <section <?= $this->orientation == 'horizontal' ? 'class="hgroup"' : '' ?> id="<?= htmlReady($id) ?>">
    <span class="textlabel">
        <?= htmlReady($this->title) ?>
    </span>

    <? foreach ($options as $key => $option) : ?>
        <label class="" <?= $attributes ?>>
                <input type="radio"
                       name="<?= htmlReady($this->name) ?>"
                       v-model="<?= htmlReady($this->name) ?>"
                       value="<?= htmlReady($key) ?>" <?= $key == $value ? 'checked' : '' ?>>
                    <?= htmlReady($option) ?>
        </label>
    <? endforeach ?>
</section>
</div>