1<?php 2 3declare(strict_types=1); 4 5use Fisharebest\Webtrees\Contracts\UserInterface; 6use Fisharebest\Webtrees\Http\RequestHandlers\UserEditPage; 7use Fisharebest\Webtrees\I18N; 8 9/** 10 * @var UserInterface $user 11 */ 12 13?> 14<?= I18N::translate('Hello administrator…') ?> 15 16<?= /* I18N: %1$s is a real-name, %2$s is a username, %3$s is an email address */ I18N::translate( 17 'A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).', 18 e($user->realName()), 19 e($user->userName()), 20 e($user->email()) 21) ?> 22 23<?= I18N::translate('You need to review the account details.') ?> 24 25<?= route(UserEditPage::class, ['user_id' => $user->id()]) ?> 26 27<?= /* I18N: You need to: */ I18N::translate('Set the status to “approved”.') ?> 28<?= /* I18N: You need to: */ I18N::translate('Set the access level for each tree.') ?> 29<?= /* I18N: You need to: */ I18N::translate('Link the user account to an individual.'); 30