forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inverselink.php
175 lines (158 loc) · 6.25 KB
/
inverselink.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
<?php
// Link media items to indi, sour and fam records
//
// This is the page that does the work of linking items.
//
// webtrees: Web based Family History software
// Copyright (C) 2013 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
//
// 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 2 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, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
define('WT_SCRIPT_NAME', 'inverselink.php');
require './includes/session.php';
require WT_ROOT.'includes/functions/functions_edit.php';
$controller=new WT_Controller_Simple();
$controller
->requireEditorLogin()
->setPageTitle(WT_I18N::translate('Link to an existing media object'))
->addExternalJavascript(WT_STATIC_URL.'js/autocomplete.js')
->pageHeader();
//-- page parameters and checking
$linktoid = WT_Filter::get('linktoid', WT_REGEX_XREF);
$mediaid = WT_Filter::get('mediaid', WT_REGEX_XREF);
$linkto = WT_Filter::get('linkto', 'person|source|family|manage|repository|note');
$action = WT_Filter::get('action', 'choose|update', 'choose');
// If GedFAct_assistant/_MEDIA/ installed ======================
if ($linkto=='manage' && array_key_exists('GEDFact_assistant', WT_Module::getActiveModules())) {
require WT_ROOT.WT_MODULES_DIR.'GEDFact_assistant/_MEDIA/media_0_inverselink.php';
} else {
//-- check for admin
$paramok = true;
if (!empty($linktoid)) $paramok = WT_GedcomRecord::getInstance($linktoid)->canShow();
if ($action == "choose" && $paramok) {
?>
<script>
var pastefield;
function openerpasteid(id) {
window.opener.paste_id(id);
window.close();
}
function paste_id(value) {
pastefield.value = value;
}
function paste_char(value) {
pastefield.value += value;
}
</script>
<?php
echo '<form name="link" method="get" action="inverselink.php">';
echo '<input type="hidden" name="action" value="update">';
if (!empty($mediaid)) {
echo '<input type="hidden" name="mediaid" value="', $mediaid, '">';
}
if (!empty($linktoid)) {
echo '<input type="hidden" name="linktoid" value="', $linktoid, '">';
}
echo '<input type="hidden" name="linkto" value="', $linkto, '">';
echo '<input type="hidden" name="ged" value="', $GEDCOM, '">';
echo '<table class="facts_table">';
echo '<tr><td class="topbottombar" colspan="2">';
echo WT_I18N::translate('Link to an existing media object');
echo '</td></tr><tr><td class="descriptionbox width20 wrap">', WT_I18N::translate('Media'), '</td>';
echo '<td class="optionbox wrap">';
if (!empty($mediaid)) {
//-- Get the title of this existing Media item
$title=
WT_DB::prepare("SELECT m_titl FROM `##media` where m_id=? AND m_file=?")
->execute(array($mediaid, WT_GED_ID))
->fetchOne();
if ($title) {
echo '<b>', WT_Filter::escapeHtml($title), '</b>';
} else {
echo '<b>', $mediaid, '</b>';
}
} else {
echo '<input type="text" name="mediaid" id="mediaid" size="5">';
echo ' ', print_findmedia_link('mediaid', '1media');
echo "</td></tr>";
}
if (!isset($linktoid)) $linktoid = "";
echo '<tr><td class="descriptionbox">';
if ($linkto == "person") {
echo WT_I18N::translate('Individual'), "</td>";
echo '<td class="optionbox wrap">';
if ($linktoid=="") {
echo '<input class="pedigree_form" type="text" name="linktoid" id="linktopid" size="3" value="', $linktoid, '"> ';
echo print_findindi_link('linktopid');
} else {
$record=WT_Individual::getInstance($linktoid);
echo $record->format_list('span', false, $record->getFullName());
}
}
if ($linkto == "family") {
echo WT_I18N::translate('Family'), '</td>';
echo '<td class="optionbox wrap">';
if ($linktoid=="") {
echo '<input class="pedigree_form" type="text" name="linktoid" id="linktofamid" size="3" value="', $linktoid, '"> ';
echo print_findfamily_link('linktofamid');
} else {
$record=WT_Family::getInstance($linktoid);
echo $record->format_list('span', false, $record->getFullName());
}
}
if ($linkto == "source") {
echo WT_I18N::translate('Source'), "</td>";
echo '<td class="optionbox wrap">';
if ($linktoid=="") {
echo '<input class="pedigree_form" type="text" name="linktoid" id="linktosid" size="3" value="', $linktoid, '"> ';
echo print_findsource_link('linktosid');
} else {
$record=WT_Source::getInstance($linktoid);
echo $record->format_list('span', false, $record->getFullName());
}
}
if ($linkto == "repository") {
echo WT_I18N::translate('Repository'), "</td>";
echo '<td class="optionbox wrap">';
if ($linktoid=="") {
echo '<input class="pedigree_form" type="text" name="linktoid" id="linktorid" size="3" value="', $linktoid, '">';
} else {
$record=WT_Repository::getInstance($linktoid);
echo $record->format_list('span', false, $record->getFullName());
}
}
if ($linkto == "note") {
echo WT_I18N::translate('Shared note'), "</td>";
echo '<td class="optionbox wrap">';
if ($linktoid=="") {
echo '<input class="pedigree_form" type="text" name="linktoid" id="linktonid" size="3" value="', $linktoid, '">';
} else {
$record=WT_Note::getInstance($linktoid);
echo $record->format_list('span', false, $record->getFullName());
}
}
echo '</td></tr>';
echo '<tr><td class="topbottombar" colspan="2"><input type="submit" value="', WT_I18N::translate('Set link'), '"></td></tr>';
echo '</table>';
echo '</form>';
} elseif ($action == "update" && $paramok) {
$record = WT_GedcomRecord::getInstance($linktoid);
$record->createFact('1 OBJE @' . $mediaid . '@', true);
$controller->addInlineJavascript('closePopupAndReloadParent();');
}
echo '<button onclick="closePopupAndReloadParent();">', WT_I18N::translate('close'), '</button>';
}