summaryrefslogtreecommitdiff
path: root/individual.php
blob: 4b0ab5a6b89ba32bb78503a6c15d61ea40c738b7 (plain)
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
276
277
278
279
280
281
<?php
/**
* Individual Page
*
* Display all of the information about an individual
*
* webtrees: Web based Family History software
 * Copyright (C) 2010 webtrees development team.
 *
 * Derived from PhpGedView
* Copyright (C) 2002 to 2010  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
*
* @package webtrees
* @subpackage Charts
* @version $Id$
*/

define('WT_SCRIPT_NAME', 'individual.php');
require './includes/session.php';
require WT_ROOT.'includes/controllers/individual_ctrl.php';

$showFull = ($PEDIGREE_FULL_DETAILS) ? 1 : 0;

// -- array of GEDCOM elements that will be found but should not be displayed
$nonfacts = array("FAMS", "FAMC", "MAY", "BLOB", "CHIL", "HUSB", "WIFE", "RFN", "_WT_OBJE_SORT", "");

$nonfamfacts = array(/*"NCHI",*/ "UID", "");

$controller=new IndividualController();
$controller->init();

// tell tabs that use jquery that it is already loaded
define('WT_JQUERY_LOADED', 1);

// We have finished writing session data, so release the lock
Zend_Session::writeClose();

print_header($controller->getPageTitle());

if (!$controller->indi) {
	echo "<b>", i18n::translate('Unable to find record with ID'), "</b><br /><br />";
	print_footer();
	exit;
}
else if (!$controller->indi->canDisplayName()) {
	print_privacy_error();
	print_footer();
	exit;
}
$linkToID=$controller->pid; // -- Tell addmedia.php what to link to

?>

<script language="JavaScript" type="text/javascript">
// <![CDATA[
// javascript function to open a window with the raw gedcom in it
function show_gedcom_record(shownew) {
	fromfile="";
	if (shownew=="yes") fromfile='&fromfile=1';
	var recwin = window.open("gedrecord.php?pid=<?php echo $controller->pid; ?>"+fromfile, "_blank", "top=50,left=50,width=600,height=400,scrollbars=1,scrollable=1,resizable=1");
}
<?php if (WT_USER_CAN_EDIT) { ?>
function open_link_remote(pid) {
	window.open("addremotelink.php?pid="+pid, "_blank", "top=50,left=50,width=600,height=500,scrollbars=1,scrollable=1,resizable=1");
	return false;
}

function showchanges() {
	window.location = '<?php echo $controller->indi->getRawUrl(); ?>&show_changes=yes';
}
<?php } ?>

var tabCache = new Array();
var pinned = false;

jQuery(document).ready(function() {
	// TODO: change images directory when the common images will be deleted.
	jQuery('#tabs').tabs({ spinner: '<img src=\"images/loading.gif\" height=\"18\" border=\"0\" alt=\"\" />' });
	jQuery("#tabs").tabs({ cache: true });
	var $tabs = jQuery('#tabs');
	jQuery('#tabs').bind('tabsshow', function(event, ui) {
		var selectedTab = ui.tab.name;
		tabCache[selectedTab] = true;

	<?php
	foreach ($controller->tabs as $tab) {
		echo $tab->getJSCallback()."\n";
	}
	?>
	});
});
//]]>
</script>

<div id="indi_main_blocks">
	<?php
		if ((empty($SEARCH_SPIDER))&&($controller->accept_success)) echo "<b>", i18n::translate('Changes successfully accepted into database'), "</b><br />";
		if ($controller->indi->isMarkedDeleted()) echo "<span class=\"error\">".i18n::translate('This record has been marked for deletion upon admin approval.')."</span>";
		if (strlen($controller->indi->getAddName()) > 0) echo "<span class=\"name_head\">", PrintReady($controller->indi->getAddName()), "</span><br />";
	?>
	<div id="indi_header">
		<h1>
			<?php
				if ($TEXT_DIRECTION=="rtl") echo "&nbsp;"; {
					echo PrintReady($controller->indi->getFullName());
				}
				if (WT_USER_IS_ADMIN) {
					$user_id=get_user_from_gedcom_xref(WT_GED_ID, $controller->pid);
					if ($user_id) {
						$user_name=get_user_name($user_id);
						echo "&nbsp;";
						echo printReady("<a href=\"useradmin.php?action=edituser&amp;username={$user_name}\">({$user_name})</a>");
					}
				}
			?>
		</h1>
			<div id="indi_mainimage">
				<?php if ($controller->canShowHighlightedObject()) {
					echo $controller->getHighlightedObject();
				} ?>
			</div>
			<div id="indi_name_details">
				<?php
					//Display name details
					if ($controller->indi->canDisplayDetails()) {
						$globalfacts=$controller->getGlobalFacts();
						$nameSex = array('NAME', 'SEX');
						foreach ($globalfacts as $key=>$value) {
							if ($key == 0) {
							// First name
								$fact = $value->getTag();
								if (in_array($fact, $nameSex)) {
									if ($fact=="NAME") $controller->print_name_record($value);
								}
								//Display facts
									echo '<div id="indi_facts">';
									//Display gender
									foreach ($globalfacts as $key=>$value) {
										$fact = $value->getTag();
										if (in_array($fact, $nameSex)) {
											if ($fact=="SEX") $controller->print_sex_record($value);
										}
									}
									// Display summary birth/death info.
									$summary=$controller->indi->format_first_major_fact(WT_EVENTS_BIRT, 2);
									// If alive display age
									if (!$controller->indi->isDead()) {
										$bdate=$controller->indi->getBirthDate();
										$age = GedcomDate::GetAgeGedcom($bdate);
										if ($age!="") $summary.= "<dl><dt class=\"label\">".i18n::translate('Age')."</dt><span class=\"field\">".get_age_at_event($age, true)."</span></dl>";
									}
									$summary.=$controller->indi->format_first_major_fact(WT_EVENTS_DEAT, 2);
									if ($SHOW_LDS_AT_GLANCE) {
										$summary.="<dl><span><b>".get_lds_glance($controller->indi->getGedcomRecord())."</b></span></dl>";
									}
									if ($summary) {
										echo $summary;
									}
								echo '</div>';
							} else {
								// 2nd and more names
								$fact = $value->getTag();
								if (in_array($fact, $nameSex)) {
									if ($fact=="NAME") $controller->print_name_record($value);
								}
							}
						}
					}
				?>
			</div>
	</div>
	<div id="hitcounter" class="clearfloat">
		<?php
			if ($SHOW_COUNTER && (empty($SEARCH_SPIDER))) {
				//print indi counter only if displaying a non-private person
				require WT_ROOT.'includes/hitcount.php';
				echo i18n::translate('Hit Count:'), " ", $hitCount;
			}
			// if individual is a remote individual
			// if information for this information is based on a remote site
			if ($controller->indi->isRemote()) {
				echo '<br />';
				echo i18n::translate('The information for this individual was linked from a remote site.');//<br />--><!--take this out if you want break the remote site and the fact that it was remote into two separate lines
				echo '<a href="', $controller->indi->getHtmlUrl(), '">', $controller->indi->getLinkTitle(), '</a>';
			}
			// if indivual is not a remote individual
			// if information for this individual is based on this local site
			// this is not need to be printed, but may be uncommented if desired
			/*else
				echo("This is a local individual.");
			}*/
		?>
	</div>

<?php
foreach ($controller->tabs as $tab) {
	echo $tab->getPreLoadContent();
}
?>
<?php
	$showFull = ($PEDIGREE_FULL_DETAILS) ? 1 : 0;
?>
</div>
<?php
if (!$controller->indi->canDisplayDetails()) {
	echo "<table><tr><td class=\"facts_value\" >";
	print_privacy_error();
	echo "</td></tr></table>";
} else {
	require './sidebar.php';

	// Initially hide the sidebar controls & pin ======
	?>
	<script type="text/javascript">
		jQuery('#sidebar_controls').hide();
		jQuery('#sidebar_pin').hide();
	</script>
	<?php
	// =====================================

	echo '<div id="tabs" class="ui-tabs ui-widget ui-widget-content ui-corner-all">';
	echo '<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">';
	foreach ($controller->tabs as $tab) {
		if ($tab->hasTabContent()) {
			// jQuery UI uses the title attribute to link named tabs to content-divs.
			// Unfortunately, this shows in a tool-tip.  How to improve this?
			if ($tab->getName()==$controller->default_tab) {
				// Default tab loads immediately
				echo '<li class="ui-state-default ui-corner-top ui-tabs-selected"><a title="', $tab->getName(), '" href="#', $tab->getName(), '">';
			} elseif ($tab->canLoadAjax()) {
				// AJAX tabs load later
				echo '<li class="ui-state-default ui-corner-top"><a title="', $tab->getName(), '" href="',$controller->indi->getHtmlUrl(),'&amp;action=ajax&amp;module=', $tab->getName(), '">';
			} else {
				// Non-AJAX tabs load immediately (search engines don't load ajax)
				echo '<li class="ui-state-default ui-corner-top"><a title="', $tab->getName(), '" href="#', $tab->getName(), '">';
			}
			echo '<span>', $tab->getTitle(), '</span></a></li>';
		}
	}
	echo '</ul>';
	foreach ($controller->tabs as $tab) {
		if ($tab->hasTabContent()) {
			if ($tab->getName()==$controller->default_tab || !$tab->canLoadAjax()) {
				echo '<div id="', $tab->getName(), '" class="ui-tabs-panel ui-widget-content ui-corner-bottom">';
				echo $tab->getTabContent();
				echo '</div>';
			}
		}
	} ?>
	</div> <!-- tabs -->
	<?php
}

echo WT_JS_START;
echo 'var catch_and_ignore; function paste_id(value) {catch_and_ignore = value;}';
echo 'if (typeof toggleByClassName == "undefined") {';
echo 'alert("webtrees.js: A javascript function is missing.  Please clear your Web browser cache");';
echo '}';
echo WT_JS_END;

if ($SEARCH_SPIDER) {
	if ($SHOW_SPIDER_TAGLINE)
		echo i18n::translate('Search Engine Spider Detected'), ": ", $SEARCH_SPIDER;
	echo "</div></body></html>";
} else {
	print_footer();
}