xref: /webtrees/resources/views/modules/todays_events/config.phtml (revision c9e11c2a4bb055d724ccdbad6b9c595dd26c8975)
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="filter">
5dd6b2bfcSGreg Roach        <?= I18N::translate('Show only events of living individuals') ?>
6dd6b2bfcSGreg Roach    </label>
7dd6b2bfcSGreg Roach    <div class="col-sm-9">
8b6c326d8SGreg Roach        <?= view('components/radios-inline', ['name' => 'filter', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $filter]) ?>
9dd6b2bfcSGreg Roach    </div>
10dd6b2bfcSGreg Roach</div>
11dd6b2bfcSGreg Roach
12dd6b2bfcSGreg Roach<div class="form-group row">
13dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="events">
14dd6b2bfcSGreg Roach        <?= I18N::translate('Events') ?>
15dd6b2bfcSGreg Roach    </label>
16dd6b2bfcSGreg Roach    <div class="col-sm-9">
17*c9e11c2aSGreg Roach        <?= view('components/select', ['name' => 'events[]', 'id' => 'events', 'selected' => $event_array, 'options' => $all_events, 'class' => 'select2']) ?>
18dd6b2bfcSGreg Roach    </div>
19dd6b2bfcSGreg Roach</div>
20dd6b2bfcSGreg Roach
21dd6b2bfcSGreg Roach<div class="form-group row">
22dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="infoStyle">
23dd6b2bfcSGreg Roach        <?= /* I18N: Label for a configuration option */ I18N::translate('Presentation style') ?>
24dd6b2bfcSGreg Roach    </label>
25dd6b2bfcSGreg Roach    <div class="col-sm-9">
26*c9e11c2aSGreg Roach        <?= view('components/select', ['name' => 'infoStyle', 'selected' => $infoStyle, 'options' => $info_styles]) ?>
27dd6b2bfcSGreg Roach    </div>
28dd6b2bfcSGreg Roach</div>
29dd6b2bfcSGreg Roach
30dd6b2bfcSGreg Roach<div class="form-group row">
31dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="sortStyle">
32dd6b2bfcSGreg Roach        <?= /* I18N: Label for a configuration option */ I18N::translate('Sort order') ?>
33dd6b2bfcSGreg Roach    </label>
34dd6b2bfcSGreg Roach    <div class="col-sm-9">
35*c9e11c2aSGreg Roach        <?= view('components/select', ['name' => 'sortStyle', 'selected' => $sortStyle, 'options' => $sort_styles]) ?>
36dd6b2bfcSGreg Roach    </div>
37dd6b2bfcSGreg Roach</div>
38