![]() 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/recent_changes/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\I18N; /** * @var int $days * @var int $max_days * @var string $infoStyle * @var array<string,string> $info_styles * @var string $sortStyle * @var array<string,string> $sort_styles * @var string $source * @var array<string,string> $sources * @var bool $show_date * @var bool $show_user */ ?> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="days"> <?= I18N::translate('Number of days to show') ?> </label> <div class="col-sm-9"> <input class="form-control" id="days" name="days" type="number" min="1" max="<?= $max_days ?>" value="<?= e($days) ?>" required="required"> <?= I18N::plural('maximum %s day', 'maximum %s days', $max_days, I18N::number($max_days)) ?> </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' => $infoStyle, 'options' => $info_styles]) ?> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="sortStyle"> <?= I18N::translate('Sort order') ?> </label> <div class="col-sm-9"> <?= view('components/select', ['name' => 'sortStyle', 'selected' => $sortStyle, 'options' => $sort_styles]) ?> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="source"> <?= I18N::translate('Changes') ?> </label> <div class="col-sm-9"> <?= view('components/select', ['name' => 'source', 'selected' => $source, 'options' => $sources]) ?> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="show_user"> <?= /* I18N: label for a yes/no option */ I18N::translate('Show the user who made the change') ?> </label> <div class="col-sm-9"> <?= view('components/radios-inline', ['name' => 'show_user', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_user]) ?> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label" for="show_date"> <?= /* I18N: label for a yes/no option */ I18N::translate('Show the date and time') ?> </label> <div class="col-sm-9"> <?= view('components/radios-inline', ['name' => 'show_date', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_date]) ?> </div> </div>