forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
individual.php
237 lines (213 loc) · 10.6 KB
/
individual.php
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?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\IndividualController;
use Fisharebest\Webtrees\Functions\FunctionsDate;
use Fisharebest\Webtrees\Functions\FunctionsDb;
use Fisharebest\Webtrees\Functions\FunctionsPrint;
/** @global Tree $WT_TREE */
global $WT_TREE;
require 'includes/session.php';
$pid = Filter::get('pid', WT_REGEX_XREF);
$record = Individual::getInstance($pid, $WT_TREE);
if (!$record) {
$record = Individual::getInstance(FunctionsDb::findRin($pid), $WT_TREE);
}
$controller = new IndividualController($record);
if ($controller->record && $controller->record->canShow()) {
if (Filter::get('action') == 'ajax') {
$controller->ajaxRequest();
return;
}
// Generate the sidebar content *before* we display the page header,
// as the clippings cart needs to have write access to the session.
$sidebar_html = $controller->getSideBarContent();
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 individual 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 individual 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 individual 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 individual has been edited. The changes need to be reviewed by a moderator.') . ' ' . FunctionsPrint::helpLink('pending_changes'), 'warning');
}
}
$controller->pageHeader();
} elseif ($controller->record && $controller->record->canShowName()) {
// Just show the name.
$controller->pageHeader();
echo '<h2>', $controller->record->getFullName(), '</h2>';
echo '<p>', I18N::translate('The details of this individual are private.'), '</p>';
return;
} else {
FlashMessages::addMessage(I18N::translate('This individual does not exist or you do not have permission to view it.'), 'danger');
http_response_code(404);
$controller->pageHeader();
return;
}
// If this individual is linked to a user account, show the link
$user_link = '';
if (Auth::isAdmin()) {
$user = User::findByIndividual($controller->record);
if ($user) {
$user_link = ' — <a href="admin_users.php?filter=' . Html::escape($user->getUserName()) . '">' . Html::escape($user->getUserName()) . '</a>';
};
}
// What is (was) the age of the individual
$bdate = $controller->record->getBirthDate();
$ddate = $controller->record->getDeathDate();
if ($bdate->isOK() && !$controller->record->isDead()) {
// If living display age
$age = ' (' . I18N::translate('age') . ' ' . FunctionsDate::getAgeAtEvent(Date::getAgeGedcom($bdate, new Date(strtoupper(date('d M Y'))))) . ')';
} elseif ($bdate->isOK() && $ddate->isOK()) {
// If dead, show age at death
$age = ' (' . I18N::translate('age') . ' ' . FunctionsDate::getAgeAtEvent(Date::getAgeGedcom($bdate, $ddate)) . ')';
} else {
$age = '';
}
// Allow tabs to insert Javascript, etc.
// TODO: there's probably a cleaner way to do this.
foreach ($controller->getTabs() as $tab) {
echo $tab->getPreLoadContent();
}
$controller->addInlineJavascript('
// If the URL contains a fragment, then activate the corresponding tab.
// Use a prefix on the fragment, to prevent scrolling to the element.
var target = window.location.hash.replace("tab-", "");
var tab = $("#individual-tabs .nav-link[href=\'" + target + "\']");
// If not, then activate the first tab.
if (tab.length === 0) {
tab = $("#individual-tabs .nav-link:first");
}
tab.tab("show");
');
$individual_media = [];
foreach ($controller->record->getFacts() as $fact) {
$media = $fact->getTarget();
if ($media instanceof Media && $media->canShow() && !$media->isExternal()) {
$individual_media[] = $media;
}
}
?>
<h2>
<?= $controller->record->getFullName() ?><?= $user_link ?>, <?= $controller->record->getLifeSpan() ?> <?= $age ?>
</h2>
<div class="row">
<div class="col-sm-8">
<div class="row">
<!-- Individual images -->
<div class="col-sm-3">
<?php if (empty($individual_media)): ?>
<i class="wt-silhouette wt-silhouette-<?= $controller->record->getSex() ?>"></i>
<?php elseif (count($individual_media) === 1): ?>
<?= $individual_media[0]->displayImage(200, 260, 'crop', ['class' => 'img-thumbnail img-fluid w-100']) ?>
<?php else: ?>
<div id="individual-images" class="carousel slide" data-ride="carousel" data-interval="false">
<div class="carousel-inner">
<?php foreach ($individual_media as $n => $media): ?>
<div class="carousel-item <?= $n === 0 ? 'active' : '' ?>">
<?= $media->displayImage(200, 260, 'crop', ['class' => 'img-thumbnail img-fluid w-100']) ?>
</div>
<?php endforeach ?>
</div>
<a class="carousel-control-prev" href="#individual-images" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only"><?= I18N::translate('previous') ?></span>
</a>
<a class="carousel-control-next" href="#individual-images" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only"><?= I18N::translate('next') ?></span>
</a>
</div>
<?php endif ?>
<?php if (Auth::isEditor($WT_TREE)): ?>
<?php if (count($controller->record->getFacts('OBJE')) > 1): ?>
<div><a href="<?= Html::escape(Html::url('edit_interface.php', ['action' => 'reorder-media', 'ged' => $controller->record->getTree()->getName(), 'xref' => $controller->record->getXref()])) ?>">
<?= I18N::translate('Re-order media') ?>
</a></div>
<?php endif ?>
<?php if ($WT_TREE->getPreference('MEDIA_UPLOAD') >= Auth::accessLevel($WT_TREE)): ?>
<div><a href="<?= Html::escape(Html::url('edit_interface.php', ['action' => 'add-media-link', 'ged' => $controller->record->getTree()->getName(), 'xref' => $controller->record->getXref()])) ?>">
<?= I18N::translate('Add a media object') ?>
</a></div>
<?php endif ?>
<?php endif ?>
</div>
<!-- Names -->
<div class="col-sm-9" id="individual-names" role="tablist">
<?php foreach ($controller->record->getFacts('NAME') as $n => $name_fact): ?>
<?= $controller->formatNameRecord($n, $name_fact) ?>
<?php endforeach ?>
<?php foreach ($controller->record->getFacts('SEX') as $n => $sex_fact): ?>
<?= $controller->formatSexRecord($sex_fact) ?>
<?php endforeach ?>
<?php if ($controller->record->canEdit()): ?>
<div class="card">
<div class="card-header" role="tab" id="name-header-add">
<div class="card-title mb-0">
<a href="<?= Html::escape(Html::url('edit_interface.php', ['action' => 'addname', 'ged' => $controller->tree()->getName(), 'xref' => $controller->record->getXref()])) ?>">
<?= I18N::translate('Add a name') ?>
</a>
<?php if (count($controller->record->getFacts('NAME')) > 1): ?>
<a href="<?= Html::escape(Html::url('edit_interface.php', ['action' => 'reorder-names', 'ged' => $controller->tree()->getName(), 'xref' => $controller->record->getXref()])) ?>">
<?= I18N::translate('Re-order names') ?>
</a>
<?php endif ?>
<?php if (count($controller->record->getFacts('SEX')) === 0): ?>
<a href="<?= Html::escape(Html::url('edit_interface.php', ['action' => 'add', 'fact' => 'SEX', 'ged' => $controller->tree()->getName(), 'xref' => $controller->record->getXref()])) ?>">
<?= I18N::translate('Edit the gender') ?>
</a>
<?php endif ?>
</div>
</div>
</div>
<?php endif ?>
</div>
</div>
<div id="individual-tabs">
<ul class="nav nav-tabs flex-wrap">
<?php foreach ($controller->getTabs() as $tab): ?>
<li class="nav-item">
<a class="nav-link<?= $tab->isGrayedOut() ? ' text-muted' : '' ?>" data-toggle="tab" role="tab" data-href="<?= $controller->record->getHtmlUrl(), '&action=ajax&module=', $tab->getName() ?>" href="#<?= $tab->getName() ?>">
<?= $tab->getTitle() ?>
</a>
</li>
<?php endforeach ?>
</ul>
<div class="tab-content">
<?php foreach ($controller->getTabs() as $tab): ?>
<div id="<?= $tab->getName() ?>" class="tab-pane fade wt-ajax-load" role="tabpanel"><?php if (!$tab->canLoadAjax()): ?>
<?= $tab->getTabContent() ?>
<?php endif ?></div>
<?php endforeach ?>
</div>
</div>
</div>
<div class="col-sm-4">
<?= $sidebar_html ?>
</div>
</div>