xref: /webtrees/resources/views/modules/upcoming_events/config.phtml (revision 48f08416725e4311af2f3c16f83029e6949af2ce)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<div class="form-group row">
4dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="days">
5dd6b2bfcSGreg Roach        <?= I18N::translate('Number of days to show') ?>
6dd6b2bfcSGreg Roach    </label>
7dd6b2bfcSGreg Roach    <div class="col-sm-9">
8dd6b2bfcSGreg Roach        <input type="text" name="days" id="days" size="2" value="<?= $days ?>">
9dd6b2bfcSGreg Roach        <?= I18N::plural('maximum %s day', 'maximum %s days', $max_days, I18N::number($max_days)) ?>
10dd6b2bfcSGreg Roach    </div>
11dd6b2bfcSGreg Roach</div>
12dd6b2bfcSGreg Roach
13dd6b2bfcSGreg Roach<div class="form-group row">
14dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="filter">
15dd6b2bfcSGreg Roach        <?= I18N::translate('Show only events of living individuals') ?>
16dd6b2bfcSGreg Roach    </label>
17dd6b2bfcSGreg Roach    <div class="col-sm-9">
18b6c326d8SGreg Roach        <?= view('components/radios-inline', ['name' => 'filter', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $filter]) ?>
19dd6b2bfcSGreg Roach    </div>
20dd6b2bfcSGreg Roach</div>
21dd6b2bfcSGreg Roach
22dd6b2bfcSGreg Roach<div class="form-group row">
23dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="events">
24dd6b2bfcSGreg Roach        <?= I18N::translate('Events') ?>
25dd6b2bfcSGreg Roach    </label>
26dd6b2bfcSGreg Roach    <div class="col-sm-9">
27c9e11c2aSGreg Roach        <?= view('components/select', ['name' => 'events[]', 'id' => 'events', 'selected' => $event_array, 'options' => $all_events, 'class' => 'select2']) ?>
28dd6b2bfcSGreg Roach    </div>
29dd6b2bfcSGreg Roach</div>
30dd6b2bfcSGreg Roach
31dd6b2bfcSGreg Roach<div class="form-group row">
32dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="infoStyle">
33dd6b2bfcSGreg Roach        <?= /* I18N: Label for a configuration option */ I18N::translate('Presentation style') ?>
34dd6b2bfcSGreg Roach    </label>
35dd6b2bfcSGreg Roach    <div class="col-sm-9">
36*48f08416SGreg Roach        <?= view('components/select', ['name' => 'infoStyle', 'selected' => $infoStyle, 'options' => $info_styles]) ?>
37dd6b2bfcSGreg Roach    </div>
38dd6b2bfcSGreg Roach</div>
39dd6b2bfcSGreg Roach
40dd6b2bfcSGreg Roach<div class="form-group row">
41dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="sortStyle">
42dd6b2bfcSGreg Roach        <?= /* I18N: Label for a configuration option */ I18N::translate('Sort order') ?>
43dd6b2bfcSGreg Roach    </label>
44dd6b2bfcSGreg Roach    <div class="col-sm-9">
45c9e11c2aSGreg Roach        <?= view('components/select', ['name' => 'sortStyle', 'selected' => $sortStyle, 'options' => $sort_styles]) ?>
46dd6b2bfcSGreg Roach    </div>
47dd6b2bfcSGreg Roach</div>
48