blob: 37170c99e4960a7781ec0778b3fa140e542229d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div class="formpart">
<section <?= $this->orientation == 'horizontal' ? 'class="hgroup"' : '' ?> for="<?= $id ?>">
<span class="textlabel">
<?= htmlReady($this->title) ?>
</span>
<? foreach ($options as $key => $option) : ?>
<label class="" <?= $attributes ?>>
<input type="radio"
v-model="<?= htmlReady($this->name) ?>"
value="<?= htmlReady($key) ?>" <?= $key == $value ? 'checked' : '' ?>>
<?= htmlReady($option) ?>
</label>
<? endforeach ?>
</section>
</div>
|