xref: /webtrees/resources/views/components/radios-inline.phtml (revision 09482a558a7989d76059e7f9911605cf836b77ba)
1<?php
2
3/**
4 * @var string        $name
5 * @var mixed         $selected
6 * @var array<string> $options
7 */
8
9?>
10
11<?php foreach ($options as $value => $label) : ?>
12    <?= view('components/radio-inline', ['label' => $label, 'name' => $name, 'value' => (string) $value, 'checked' => $value === $selected]) ?>
13<?php endforeach;
14