xref: /webtrees/resources/views/individual-page-pending.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
10f5fd22fSGreg Roach<?php
20f5fd22fSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
50f5fd22fSGreg Roachuse Fisharebest\Webtrees\Auth;
60f5fd22fSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\PendingChangesAcceptRecord;
70f5fd22fSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\PendingChangesRejectRecord;
80f5fd22fSGreg Roachuse Fisharebest\Webtrees\I18N;
90f5fd22fSGreg Roachuse Fisharebest\Webtrees\Individual;
100f5fd22fSGreg Roach
110f5fd22fSGreg Roach/**
120f5fd22fSGreg Roach * @var Individual $record
130f5fd22fSGreg Roach */
140f5fd22fSGreg Roach?>
150f5fd22fSGreg Roach
160f5fd22fSGreg Roach<?php if ($record->isPendingDeletion()) : ?>
170f5fd22fSGreg Roach    <?php if (Auth::isModerator($record->tree())) : ?>
180f5fd22fSGreg Roach        <?= view('components/alert-warning-dismissible', [
190f5fd22fSGreg Roach            'alert' => /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */
20d4786c66SGreg Roach                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']),
210f5fd22fSGreg Roach        ]) ?>
220f5fd22fSGreg Roach    <?php elseif (Auth::isEditor($record->tree())) : ?>
230f5fd22fSGreg Roach        <?= 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'])]) ?>
240f5fd22fSGreg Roach    <?php endif ?>
250f5fd22fSGreg Roach<?php elseif ($record->isPendingAddition()) : ?>
260f5fd22fSGreg Roach    <?php if (Auth::isModerator($record->tree())) : ?>
270f5fd22fSGreg Roach        <?= view('components/alert-warning-dismissible', [
280f5fd22fSGreg Roach            'alert' => /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */
29d4786c66SGreg Roach                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']),
300f5fd22fSGreg Roach        ]) ?>
310f5fd22fSGreg Roach    <?php elseif (Auth::isEditor($record->tree())) : ?>
320f5fd22fSGreg Roach        <?= 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'])]) ?>
330f5fd22fSGreg Roach    <?php endif ?>
340f5fd22fSGreg Roach<?php endif ?>
35