1<?php 2 3use Fisharebest\Webtrees\Auth; 4use Fisharebest\Webtrees\Http\RequestHandlers\PendingChangesAcceptRecord; 5use Fisharebest\Webtrees\Http\RequestHandlers\PendingChangesRejectRecord; 6use Fisharebest\Webtrees\I18N; 7use Fisharebest\Webtrees\Individual; 8 9/** 10 * @var Individual $record 11 */ 12?> 13 14<?php if ($record->isPendingDeletion()) : ?> 15 <?php if (Auth::isModerator($record->tree())) : ?> 16 <?= view('components/alert-warning-dismissible', [ 17 'alert' => /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ 18 I18N::translate('This individual has been deleted. You should review the deletion and then %1$s or %2$s it.', '<a href="#" class="alert-link" data-wt-post-url="' . e(route(PendingChangesAcceptRecord::class, ['tree' => $record->tree()->name(), 'xref' => $record->xref()])) . '">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'accept') . '</a>', '<a href="#" class="alert-link" data-wt-post-url="' . e(route(PendingChangesRejectRecord::class, ['tree' => $record->tree()->name(), 'xref' => $record->xref()])) . '">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'reject') . '</a>') . ' ' . view('help/link', ['topic' => 'pending_changes']), 19 ]) ?> 20 <?php elseif (Auth::isEditor($record->tree())) : ?> 21 <?= view('components/alert-warning-dismissible', ['alert' => I18N::translate('This individual has been deleted. The deletion will need to be reviewed by a moderator.') . ' ' . view('help/link', ['topic' => 'pending_changes'])]) ?> 22 <?php endif ?> 23<?php elseif ($record->isPendingAddition()) : ?> 24 <?php if (Auth::isModerator($record->tree())) : ?> 25 <?= view('components/alert-warning-dismissible', [ 26 'alert' => /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ 27 I18N::translate('This individual has been edited. You should review the changes and then %1$s or %2$s them.', '<a href="#" class="alert-link" data-wt-post-url="' . e(route(PendingChangesAcceptRecord::class, ['tree' => $record->tree()->name(), 'xref' => $record->xref()])) . '">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'accept') . '</a>', '<a href="#" class="alert-link" data-wt-post-url="' . e(route(PendingChangesRejectRecord::class, ['tree' => $record->tree()->name(), 'xref' => $record->xref()])) . '">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'reject') . '</a>') . ' ' . view('help/link', ['topic' => 'pending_changes']), 28 ]) ?> 29 <?php elseif (Auth::isEditor($record->tree())) : ?> 30 <?= view('components/alert-warning-dismissible', ['alert' => I18N::translate('This individual has been edited. The changes need to be reviewed by a moderator.') . ' ' . view('help/link', ['topic' => 'pending_changes'])]) ?> 31 <?php endif ?> 32<?php endif ?> 33