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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
<?php
// Classes and libraries for module system
//
// webtrees: Web based Family History software
// Copyright (C) 2013 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2010 John Finlay
//
// 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
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
class lightbox_WT_Module extends WT_Module implements WT_Module_Tab {
private $media_list;
// Extend WT_Module
public function getTitle() {
return /* I18N: Name of a module */ WT_I18N::translate('Album');
}
// Extend WT_Module
public function getDescription() {
return /* I18N: Description of the “Album” module */ WT_I18N::translate('An alternative to the “media” tab, and an enhanced image viewer.');
}
// Implement WT_Module_Tab
public function defaultTabOrder() {
return 60;
}
// Implement WT_Module_Tab
public function hasTabContent() {
return WT_USER_CAN_EDIT || $this->get_media();
}
// Implement WT_Module_Tab
public function isGrayedOut() {
return !$this->get_media();
}
// Implement WT_Module_Tab
public function getTabContent() {
global $controller, $sort_i;
$html='<div id="'.$this->getName().'_content">';
//Show Lightbox-Album header Links
if (WT_USER_CAN_EDIT) {
$html.='<table class="facts_table"><tr>';
$html.='<td class="descriptionbox rela">';
// Add a new media object
if (get_gedcom_setting(WT_GED_ID, 'MEDIA_UPLOAD') >= WT_USER_ACCESS_LEVEL) {
$html.='<span><a href="#" onclick="window.open(\'addmedia.php?action=showmediaform&linktoid='.$controller->record->getXref().'\', \'_blank\', \'resizable=1,scrollbars=1,top=50,height=780,width=600\');return false;">';
$html.='<img src="'.WT_STATIC_URL.WT_MODULES_DIR.'lightbox/images/image_add.png" id="head_icon" class="icon" title="'.WT_I18N::translate('Add a new media object').'" alt="'.WT_I18N::translate('Add a new media object').'">';
$html.=WT_I18N::translate('Add a new media object');
$html.='</a></span>';
// Link to an existing item
$html.='<span><a href="#" onclick="window.open(\'inverselink.php?linktoid='.$controller->record->getXref().'&linkto=person\', \'_blank\', \'resizable=1,scrollbars=1,top=50,height=300,width=450\');">';
$html.= '<img src="'.WT_STATIC_URL.WT_MODULES_DIR.'lightbox/images/image_link.png" id="head_icon" class="icon" title="'.WT_I18N::translate('Link to an existing media object').'" alt="'.WT_I18N::translate('Link to an existing media object').'">';
$html.=WT_I18N::translate('Link to an existing media object');
$html.='</a></span>';
}
if (WT_USER_GEDCOM_ADMIN && $this->get_media()) {
// Popup Reorder Media
$html.='<span><a href="#" onclick="reorder_media(\''.$controller->record->getXref().'\')">';
$html.='<img src="'.WT_STATIC_URL.WT_MODULES_DIR.'lightbox/images/images.png" id="head_icon" class="icon" title="'.WT_I18N::translate('Re-order media').'" alt="'.WT_I18N::translate('Re-order media').'">';
$html.=WT_I18N::translate('Re-order media');
$html.='</a></span>';
$html.='</td>';
}
$html.='</tr></table>';
}
$media_found = false;
// Used when sorting media on album tab page
$html .= '<table width="100%" cellpadding="0" border="0">';
$html .= '<tr>';
$html .= '<td class="facts_value">';
$html .= '<div class="thumbcontainer">';
$html .= '<ul class="thumblist">';
foreach ($this->get_media() as $media) {
$html .= '<li class="li_norm">';
// ...and now the actual image
if (strpos($media->getFilename(), 'http://maps.google.')===0) {
$html .= '<table width="10px" style="margin-top:-90px;" class="pic" border="0"><tr>';
} else {
$html .= '<table width="10px" class="pic" border="0"><tr>';
}
$html .= '<td align="center" rowspan="2">';
$html .= '<div style="width:1px; height:100px;"></div>';
$html .= '</td>';
$html .= '<td colspan="3" valign="middle" align="center">';
$html .= $media->displayImage();
$html .= '</td></tr>';
//View Edit Menu ----------------------------------
$html .= '<tr>';
$html .= '<td width="5px"></td>';
$html .= '<td valign="bottom" align="center" class="nowrap">';
//Get media item Notes
$haystack = $media->getGedcom();
$needle = '1 NOTE';
$before = substr($haystack, 0, strpos($haystack, $needle));
$after = substr(strstr($haystack, $needle), strlen($needle));
$notes = print_fact_notes($before . $needle . $after, 1, true, true);
// Prepare Below Thumbnail menu ----------------------------------------------------
$mtitle = '<div style="max-width:120px;overflow:hidden;text-overflow:ellipsis;">' . $media->getFullName() . '</div>';
$menu = new WT_Menu();
$menu->addLabel($mtitle, 'right');
// Continue printing menu
$menu->addClass('', 'submenu');
// View Notes
if (strpos($media->getGedcom(), "\n1 NOTE")) {
$submenu = new WT_Menu(WT_I18N::translate('View notes'), '#');
// Notes Tooltip ----------------------------------------------------
$submenu->addOnclick("modalNotes('". WT_Filter::escapeJs($notes) ."','". WT_I18N::translate('View notes') ."'); return false;");
$submenu->addClass("submenuitem");
$menu->addSubMenu($submenu);
}
//View Details
$submenu = new WT_Menu(WT_I18N::translate('View details'), WT_SERVER_NAME.WT_SCRIPT_PATH . "mediaviewer.php?mid=".$media->getXref().'&ged='.WT_GEDURL, 'right');
$submenu->addClass("submenuitem");
$menu->addSubMenu($submenu);
//View Sources
$source_menu = null;
foreach ($media->getFacts('SOUR') as $source_fact) {
$source = $source_fact->getTarget();
if ($source && $source->canShow()) {
if (!$source_menu) {
// Group sources under a top level menu
$source_menu = new WT_Menu(WT_I18N::translate('Sources'), '#', null, 'right', 'right');
$source_menu->addClass('submenuitem', 'submenu');
}
//now add a link to the actual source as a submenu
$submenu = new WT_Menu(new WT_Menu(strip_tags($source->getFullName()), $source->getHtmlUrl()));
$submenu->addClass('submenuitem', 'submenu');
$source_menu->addSubMenu($submenu);
}
}
if ($source_menu) {
$menu->addSubMenu($source_menu);
}
if (WT_USER_CAN_EDIT) {
// Edit Media
$submenu = new WT_Menu(WT_I18N::translate('Edit media'));
$submenu->addOnclick("return window.open('addmedia.php?action=editmedia&pid=".$media->getXref()."', '_blank', edit_window_specs);");
$submenu->addClass("submenuitem");
$menu->addSubMenu($submenu);
if (WT_USER_IS_ADMIN) {
// Manage Links
if (array_key_exists('GEDFact_assistant', WT_Module::getActiveModules())) {
$submenu = new WT_Menu(WT_I18N::translate('Manage links'));
$submenu->addOnclick("return window.open('inverselink.php?mediaid=".$media->getXref()."&linkto=manage', '_blank', find_window_specs);");
$submenu->addClass("submenuitem");
$menu->addSubMenu($submenu);
} else {
$submenu = new WT_Menu(WT_I18N::translate('Set link'), '#', null, 'right', 'right');
$submenu->addClass('submenuitem', 'submenu');
$ssubmenu = new WT_Menu(WT_I18N::translate('To individual'));
$ssubmenu->addOnclick("return window.open('inverselink.php?mediaid=".$media->getXref()."&linkto=person', '_blank', find_window_specs);");
$ssubmenu->addClass('submenuitem', 'submenu');
$submenu->addSubMenu($ssubmenu);
$ssubmenu = new WT_Menu(WT_I18N::translate('To family'));
$ssubmenu->addOnclick("return window.open('inverselink.php?mediaid=".$media->getXref()."&linkto=family', '_blank', find_window_specs);");
$ssubmenu->addClass('submenuitem', 'submenu');
$submenu->addSubMenu($ssubmenu);
$ssubmenu = new WT_Menu(WT_I18N::translate('To source'));
$ssubmenu->addOnclick("return window.open('inverselink.php?mediaid=".$media->getXref()."&linkto=source', '_blank', find_window_specs);");
$ssubmenu->addClass('submenuitem', 'submenu');
$submenu->addSubMenu($ssubmenu);
$menu->addSubMenu($submenu);
}
// Unlink Media
$submenu = new WT_Menu(WT_I18N::translate('Unlink Media'));
$submenu->addOnclick("return unlink_media('" . WT_I18N::translate('Are you sure you want to remove links to this media object?') . "', '" . $controller->record->getXref() . "', '" . $media->getXref() . "');");
$submenu->addClass("submenuitem");
$menu->addSubMenu($submenu);
}
}
$html .= $menu->getMenu();
$html .= '</td>';
$html .= '<td width="5px"></td>';
$html .= '</tr>';
$html .= '</table>';
$html .= '<input type="hidden" name="order1[' . $media->getXref() . ']" value="' . $sort_i . '">';
$sort_i++;
$html .= '</li>';
}
$html .= '</ul>';
$html .= '<div class="clearlist"></div>';
$html .= '</td>';
$html .= '</tr>';
$html .= '</table></div>';
return $html;
}
// Get all facts containing media links for this person and their spouse-family records
private function get_media() {
global $controller;
if ($this->media_list === null) {
// Use facts from this individual and all their spouses
$facts = $controller->record->getFacts();
foreach ($controller->record->getSpouseFamilies() as $family) {
foreach ($family->getFacts() as $fact) {
$facts[] = $fact;
}
}
// Use all media from each fact
$this->media_list = array();
foreach ($facts as $fact) {
if (!$fact->isOld()) { // Don't show pending edits, as the user just sees duplicates
preg_match_all('/(?:^1|\n\d) OBJE @(' . WT_REGEX_XREF . ')@/', $fact->getGedcom(), $matches);
foreach ($matches[1] as $match) {
$media = WT_Media::getInstance($match);
if ($media && $media->canShow()) {
$this->media_list[] = $media;
}
}
}
}
// If a media object is linked twice, only show it once
$this->media_list = array_unique($this->media_list);
// Sort these using _WT_OBJE_SORT
$wt_obje_sort = array();
foreach ($controller->record->getFacts('_WT_OBJE_SORT') as $fact) {
$wt_obje_sort[] = trim($fact->getValue(), '@');
}
usort($this->media_list, function($x, $y) use ($wt_obje_sort) {
return array_search($x->getXref(), $wt_obje_sort) - array_search($y->getXref(), $wt_obje_sort);
});
}
return $this->media_list;
}
// Implement WT_Module_Tab
public function canLoadAjax() {
global $SEARCH_SPIDER;
return !$SEARCH_SPIDER; // Search engines cannot use AJAX
}
// Implement WT_Module_Tab
public function getPreLoadContent() {
return '';
}
}
|