record && $controller->record->canShow()) { $controller->pageHeader(); if ($controller->record->isOld()) { if (WT_USER_CAN_ACCEPT) { echo '

', /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ WT_I18N::translate( 'This source has been deleted. You should review the deletion and then %1$s or %2$s it.', '' . WT_I18N::translate_c('You should review the deletion and then accept or reject it.', 'accept') . '', '' . WT_I18N::translate_c('You should review the deletion and then accept or reject it.', 'reject') . '' ), ' ', help_link('pending_changes'), '

'; } elseif (WT_USER_CAN_EDIT) { echo '

', WT_I18N::translate('This source has been deleted. The deletion will need to be reviewed by a moderator.'), ' ', help_link('pending_changes'), '

'; } } elseif ($controller->record->isNew()) { if (WT_USER_CAN_ACCEPT) { echo '

', /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ WT_I18N::translate( 'This source has been edited. You should review the changes and then %1$s or %2$s them.', '' . WT_I18N::translate_c('You should review the changes and then accept or reject them.', 'accept') . '', '' . WT_I18N::translate_c('You should review the changes and then accept or reject them.', 'reject') . '' ), ' ', help_link('pending_changes'), '

'; } elseif (WT_USER_CAN_EDIT) { echo '

', WT_I18N::translate('This source has been edited. The changes need to be reviewed by a moderator.'), ' ', help_link('pending_changes'), '

'; } } } else { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); $controller->pageHeader(); echo '

', WT_I18N::translate('This source does not exist or you do not have permission to view it.'), '

'; exit; } $controller->addInlineJavascript(' jQuery("#source-tabs") .tabs({ create: function(e, ui){ jQuery(e.target).css("visibility", "visible"); // prevent FOUC } }); '); $linked_indi = $controller->record->linkedIndividuals('SOUR'); $linked_fam = $controller->record->linkedFamilies('SOUR'); $linked_obje = $controller->record->linkedMedia('SOUR'); $linked_note = $controller->record->linkedNotes('SOUR'); echo '
'; echo '

', $controller->record->getFullName(), '

'; echo '
'; echo '
'; echo ''; // Fetch the facts $facts=$controller->record->getFacts(); // Sort the facts usort( $facts, function(WT_Fact $x, WT_Fact $y) { static $order = array( 'TITL' => 0, 'ABBR' => 1, 'AUTH' => 2, 'DATA' => 3, 'PUBL' => 4, 'TEXT' => 5, 'NOTE' => 6, 'OBJE' => 7, 'REFN' => 8, 'RIN' => 9, '_UID' => 10, 'CHAN' => 11, ); return (array_key_exists($x->getTag(), $order) ? $order[$x->getTag()] : PHP_INT_MAX) - (array_key_exists($y->getTag(), $order) ? $order[$y->getTag()] : PHP_INT_MAX); } ); // Print the facts foreach ($facts as $fact) { print_fact($fact, $controller->record); } // new fact link if ($controller->record->canEdit()) { print_add_new_fact($controller->record->getXref(), $facts, 'SOUR'); // new media if ($WT_TREE->getPreference('MEDIA_UPLOAD') >= WT_USER_ACCESS_LEVEL) { echo ''; } } echo '
'; echo WT_Gedcom_Tag::getLabel('OBJE'); echo ''; echo '', WT_I18N::translate('Add a new media object'), ''; echo help_link('OBJE'); echo '
'; echo '', WT_I18N::translate('Link to an existing media object'), ''; echo '
'; // Individuals linked to this source if ($linked_indi) { echo '
', format_indi_table($linked_indi), '
'; } // Families linked to this source if ($linked_fam) { echo '
', format_fam_table($linked_fam), '
'; } // Media Items linked to this source if ($linked_obje) { echo '
', format_media_table($linked_obje), '
'; } // Shared Notes linked to this source if ($linked_note) { echo '
', format_note_table($linked_note), '
'; } echo '
'; //close div "source-tabs" echo '
'; //close div "source-details"