1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2017 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Fisharebest\Webtrees;
use Fisharebest\Webtrees\Controller\RepositoryController;
use Fisharebest\Webtrees\Functions\FunctionsPrint;
use Fisharebest\Webtrees\Functions\FunctionsPrintFacts;
use Fisharebest\Webtrees\Functions\FunctionsPrintLists;
/** @global Tree $WT_TREE */
global $WT_TREE;
require 'includes/session.php';
$record = Repository::getInstance(Filter::get('rid', WT_REGEX_XREF), $WT_TREE);
$controller = new RepositoryController($record);
if ($controller->record && $controller->record->canShow()) {
if ($controller->record->isPendingDeletion()) {
if (Auth::isModerator($controller->record->getTree())) {
FlashMessages::addMessage(/* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate(
'This repository has been deleted. You should review the deletion and then %1$s or %2$s it.',
'<a href="#" class="alert-link" onclick="accept_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'accept') . '</a>',
'<a href="#" class="alert-link" onclick="reject_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'reject') . '</a>'
) . ' ' . FunctionsPrint::helpLink('pending_changes'), 'warning');
} elseif (Auth::isEditor($controller->record->getTree())) {
FlashMessages::addMessage(I18N::translate('This repository has been deleted. The deletion will need to be reviewed by a moderator.') . ' ' . FunctionsPrint::helpLink('pending_changes'), 'warning');
}
} elseif ($controller->record->isPendingAddtion()) {
if (Auth::isModerator($controller->record->getTree())) {
FlashMessages::addMessage(/* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate(
'This repository has been edited. You should review the changes and then %1$s or %2$s them.',
'<a href="#" class="alert-link" onclick="accept_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'accept') . '</a>',
'<a href="#" class="alert-link" onclick="reject_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'reject') . '</a>'
) . ' ' . FunctionsPrint::helpLink('pending_changes'), 'warning');
} elseif (Auth::isEditor($controller->record->getTree())) {
FlashMessages::addMessage(I18N::translate('This repository has been edited. The changes need to be reviewed by a moderator.') . ' ' . FunctionsPrint::helpLink('pending_changes'), 'warning');
}
}
$controller->pageHeader();
} else {
FlashMessages::addMessage(I18N::translate('This repository does not exist or you do not have permission to view it.'), 'danger');
http_response_code(404);
$controller->pageHeader();
return;
}
$sources = $controller->record->linkedSources('REPO');
$facts = $controller->record->getFacts();
usort(
$facts,
function (Fact $x, Fact $y) {
static $order = [
'NAME' => 0,
'ADDR' => 1,
'NOTE' => 2,
'WWW' => 3,
'REFN' => 4,
'RIN' => 5,
'_UID' => 6,
'CHAN' => 7,
];
return
(array_key_exists($x->getTag(), $order) ? $order[$x->getTag()] : PHP_INT_MAX)
-
(array_key_exists($y->getTag(), $order) ? $order[$y->getTag()] : PHP_INT_MAX);
}
);
?>
<h2 class="wt-page-title">
<?= $controller->record->getFullName() ?>
</h2>
<div class="wt-page-content">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" role="tab" href="#details">
<?= I18N::translate('Details') ?>
</a>
</li>
<li class="nav-item">
<a class="nav-link<?= empty($sources) ? ' text-muted' : '' ?>" data-toggle="tab" role="tab" href="#sources">
<?= I18N::translate('Sources') ?>
<?= Bootstrap4::badgeCount($sources) ?>
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade show active" role="tabpanel" id="details">
<table class="facts_table">
<?php foreach ($facts as $fact): ?>
<?php FunctionsPrintFacts::printFact($fact, $controller->record) ?>
<?php endforeach ?>
<?php if ($controller->record->canEdit()): ?>
<?php FunctionsPrint::printAddNewFact($controller->record->getXref(), $facts, 'REPO') ?>
<?php endif ?>
</table>
</div>
<div class="tab-pane fade" role="tabpanel" id="sources">
<?= FunctionsPrintLists::sourceTable($sources) ?>
</div>
</div>
</div>
|