![]() 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/admin/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\Fact; use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; use Fisharebest\Webtrees\Http\RequestHandlers\ManageTrees; use Fisharebest\Webtrees\Http\RequestHandlers\MergeFactsAction; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Tree; /** * @var array<Fact> $facts * @var array<Fact> $facts1 * @var array<Fact> $facts2 * @var string $title * @var GedcomRecord $record1 * @var GedcomRecord $record2 * @var Tree $tree */ ?> <?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ManageTrees::class, ['tree' => $tree->name()]) => I18N::translate('Manage family trees'), $title]]) ?> <h1><?= $title ?></h1> <form method="post" action="<?= e(route(MergeFactsAction::class, ['tree' => $tree->name()])) ?>"> <input type="hidden" name="xref1" value="<?= e($record1->xref()) ?>"> <input type="hidden" name="xref2" value="<?= e($record2->xref()) ?>"> <p> <?= I18N::translate('Select the facts and events to keep from both records.') ?> </p> <div class="card mb-4"> <div class="card-header"> <h2 class="card-title"> <?= I18N::translate('The following facts and events were found in both records.') ?> </h2> </div> <div class="card-body"> <?php if ($facts !== []) : ?> <table class="table table-bordered table-sm"> <thead> <tr> <th> <?= I18N::translate('Select') ?> </th> <th> <?= I18N::translate('Details') ?> </th> </tr> </thead> <tbody> <?php foreach ($facts as $fact) : ?> <tr> <td> <input type="checkbox" name="keep1[]" value="<?= $fact->id() ?>" checked> </td> <td> <div class="gedcom-data" dir="ltr"><?= e($fact->gedcom()) ?></div> <?php if ($fact->target() instanceof GedcomRecord) : ?> <a href="<?= e($fact->target()->url()) ?>"> <?= $fact->target()->fullName() ?> </a> <?php endif ?> </td> </tr> <?php endforeach ?> </tbody> </table> <?php else : ?> <p> <?= I18N::translate('No matching facts found') ?> </p> <?php endif ?> </div> </div> <div class="row"> <div class="col-sm-6"> <div class="card"> <div class="card-header"> <h2 class="card-title"> <?= /* I18N: the name of an individual, source, etc. */ I18N::translate('The following facts and events were only found in the record of %s.', '<a href="' . e($record1->url()) . '">' . $record1->fullName()) . '</a>' ?> </h2> </div> <div class="card-body"> <?php if ($facts1 !== []) : ?> <table class="table table-bordered table-sm"> <thead> <tr> <th> <?= I18N::translate('Select') ?> </th> <th> <?= I18N::translate('Details') ?> </th> </tr> </thead> <tbody> <?php foreach ($facts1 as $fact) : ?> <tr> <td> <input type="checkbox" name="keep1[]" value="<?= $fact->id() ?>" checked> </td> <td> <div class="gedcom-data" dir="ltr"><?= e($fact->gedcom()) ?></div> <?php if ($fact->target() instanceof GedcomRecord) : ?> <a href="<?= e($fact->target()->url()) ?>"> <?= $fact->target()->fullName() ?> </a> <?php endif ?> </td> </tr> <?php endforeach ?> </tbody> </table> <?php else : ?> <p> <?= I18N::translate('No matching facts found') ?> </p> <?php endif ?> </div> </div> </div> <div class="col-sm-6"> <div class="card"> <div class="card-header"> <h2 class="card-title"> <?= /* I18N: the name of an individual, source, etc. */ I18N::translate('The following facts and events were only found in the record of %s.', '<a href="' . e($record2->url()) . '">' . $record2->fullName()) . '</a>' ?> </h2> </div> <div class="card-body"> <?php if ($facts2 !== []) : ?> <table class="table table-bordered table-sm"> <thead> <tr> <th> <?= I18N::translate('Select') ?> </th> <th> <?= I18N::translate('Details') ?> </th> </tr> </thead> <tbody> <?php foreach ($facts2 as $fact) : ?> <tr> <td> <input type="checkbox" name="keep2[]" value="<?= $fact->id() ?>" checked> </td> <td> <div class="gedcom-data" dir="ltr"><?= e($fact->gedcom()) ?></div> <?php if ($fact->target() instanceof GedcomRecord) : ?> <a href="<?= e($fact->target()->url()) ?>"> <?= $fact->target()->fullName() ?> </a> <?php endif ?> </td> </tr> <?php endforeach ?> </tbody> </table> <?php else : ?> <p> <?= I18N::translate('No matching facts found') ?> </p> <?php endif ?> </div> </div> </div> </div> <button type="submit" class="btn btn-primary"> <?= view('icons/save') ?> <?= I18N::translate('save') ?> </button> <?= csrf_field() ?> </form>