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
|
<?php
/**
* Provides media tab header for reorder media Items using drag and drop
*
* webtrees: Web based Family History software
* Copyright (C) 2010 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2009 PHPGedView 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
*
* @package webtrees
* @subpackage Module
* @version $Id$
* @author Brian Holland
*/
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
define('WT_MEDIA_TAB_HEAD_PHP', '');
global $LB_AL_HEAD_LINKS, $gedrec, $pid;
require_once WT_ROOT.'js/prototype.js.htm';
require_once WT_ROOT.'js/scriptaculous.js.htm';
?>
<script language="javascript" type="text/javascript">
<!--
function reorder_media() {
var win02 = window.open("edit_interface.php?action=reorder_media&pid=<?php echo $pid; ?>", "win02", "resizable=1, menubar=0, scrollbars=1, top=20, height=840, width=450 ");
if (window.focus) {win02.focus();}
}
-->
</script>
<?php
// Find if indi and family associated media exists and then count them ( $tot_med_ct)
require 'includes/media_reorder_count.php';
$gedrec = find_gedcom_record($pid, WT_GED_ID);
$regexp = "/OBJE @(.*)@/";
$ct = preg_match_all($regexp, $gedrec, $match, PREG_SET_ORDER);
// If media exists and is greater than 1 item ---------------------
if ($tot_med_ct>1) {
echo "<table border=\"0\" width=\"100%\"><tr>";
// echo "<td class=\"width10 center wrap\" valign=\"top\"></td>";
//Popup Reorder Media
echo "<td class=\"width15 center wrap\" valign=\"top\">";
echo "<button type=\"button\" title=\"". i18n::translate('Re-order media')."\" onclick=\"reorder_media();\">". i18n::translate('Re-order media') ."</button>";
echo "</td>";
//echo "<td width=\"5%\"> </td>";
echo "</tr></table>";
}
|