xref: /webtrees/resources/views/modules/todays_events/config.phtml (revision dd6b2bfcc550270bb6d6778e11576148f71e4330)
1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Bootstrap4; ?>
2*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
3*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
4*dd6b2bfcSGreg Roach
5*dd6b2bfcSGreg Roach<div class="form-group row">
6*dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="filter">
7*dd6b2bfcSGreg Roach        <?= I18N::translate('Show only events of living individuals') ?>
8*dd6b2bfcSGreg Roach    </label>
9*dd6b2bfcSGreg Roach    <div class="col-sm-9">
10*dd6b2bfcSGreg Roach        <?= Bootstrap4::radioButtons('filter', FunctionsEdit::optionsNoYes(), $filter, true) ?>
11*dd6b2bfcSGreg Roach    </div>
12*dd6b2bfcSGreg Roach</div>
13*dd6b2bfcSGreg Roach
14*dd6b2bfcSGreg Roach<div class="form-group row">
15*dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="events">
16*dd6b2bfcSGreg Roach        <?= I18N::translate('Events') ?>
17*dd6b2bfcSGreg Roach    </label>
18*dd6b2bfcSGreg Roach    <div class="col-sm-9">
19*dd6b2bfcSGreg Roach        <?= Bootstrap4::multiSelect($all_events, $event_array, ['id' => 'events', 'name' => 'events[]', 'class' => 'select2']) ?>
20*dd6b2bfcSGreg Roach    </div>
21*dd6b2bfcSGreg Roach</div>
22*dd6b2bfcSGreg Roach
23*dd6b2bfcSGreg Roach<div class="form-group row">
24*dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="infoStyle">
25*dd6b2bfcSGreg Roach        <?= /* I18N: Label for a configuration option */ I18N::translate('Presentation style') ?>
26*dd6b2bfcSGreg Roach    </label>
27*dd6b2bfcSGreg Roach    <div class="col-sm-9">
28*dd6b2bfcSGreg Roach        <?= Bootstrap4::select($info_styles, $infoStyle, ['id' => 'infoStyle', 'name' => 'infoStyle']) ?>
29*dd6b2bfcSGreg Roach    </div>
30*dd6b2bfcSGreg Roach</div>
31*dd6b2bfcSGreg Roach
32*dd6b2bfcSGreg Roach<div class="form-group row">
33*dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="sortStyle">
34*dd6b2bfcSGreg Roach        <?= /* I18N: Label for a configuration option */ I18N::translate('Sort order') ?>
35*dd6b2bfcSGreg Roach    </label>
36*dd6b2bfcSGreg Roach    <div class="col-sm-9">
37*dd6b2bfcSGreg Roach        <?= Bootstrap4::select($sort_styles, $sortStyle, ['id' => 'sortStyle', 'name' => 'sortStyle']) ?>
38*dd6b2bfcSGreg Roach    </div>
39*dd6b2bfcSGreg Roach</div>
40