xref: /webtrees/resources/views/components/radio-inline.phtml (revision b11cdcd45131b1585d66693fab363cfeb18c51a4)
1<?php
2
3declare(strict_types=1);
4
5/**
6 * @var bool|null   $checked
7 * @var bool|null   $disabled
8 * @var string|null $id
9 * @var string      $label
10 * @var string      $name
11 * @var string      $value
12 */
13
14?>
15
16<div class="form-check form-check-inline">
17    <input type="radio" class="form-check-input"
18    name="<?= e($name) ?>"
19    id="<?= e($id ?? $name . '-' . $value) ?>"
20    value="<?= e($value) ?>"
21        <?= $checked ?? false ? 'checked="checked"' : '' ?>
22        <?= $disabled ?? false ? 'disabled="disabled"' : '' ?>
23        required="required"
24    />
25    <label class="form-check-label" for="<?= e($id ?? $name . '-' . $value) ?>">
26        <?= $label ?>
27    </label>
28</div>
29