![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/webtrees/resources/views/modules/todays_events/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\I18N; /** * @var array<string,string> $all_events * @var array<string,string> $event_array * @var string $filter * @var string $info_style * @var array<string,string> $info_styles * @var string $sort_style * @var array<string,string> $sort_styles */ ?> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="filter"> <?= I18N::translate('Show only events of living individuals') ?> </label> <div class="col-sm-9"> <?= view('components/radios-inline', ['name' => 'filter', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $filter]) ?> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="events"> <?= I18N::translate('Events') ?> </label> <div class="col-sm-9"> <?= view('components/select', ['name' => 'events[]', 'id' => 'events', 'selected' => $event_array, 'options' => $all_events, 'class' => 'tom-select']) ?> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="infoStyle"> <?= I18N::translate('Layout') ?> </label> <div class="col-sm-9"> <?= view('components/select', ['name' => 'infoStyle', 'selected' => $info_style, 'options' => $info_styles]) ?> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="sortStyle"> <?= /* I18N: Label for a configuration option */ I18N::translate('Sort order') ?> </label> <div class="col-sm-9"> <?= view('components/select', ['name' => 'sortStyle', 'selected' => $sort_style, 'options' => $sort_styles]) ?> </div> </div>