record && $controller->record->canDisplayDetails()) { $controller->pageHeader(); if ($controller->record->isMarkedDeleted()) { 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 (find_updated_record($controller->record->getXref(), WT_GED_ID)!==null) { 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; } if (WT_USE_LIGHTBOX) { $album = new lightbox_WT_Module(); $album->getPreLoadContent(); } $linkToID=$controller->record->getXref(); // Tell addmedia.php what to link to $controller ->addInlineJavascript('function show_gedcom_record() {var recwin=window.open("gedrecord.php?pid=' . $controller->record->getXref() . '", "_blank", edit_window_specs);}') ->addInlineJavascript('jQuery("#source-tabs").tabs();') ->addInlineJavascript('jQuery("#source-tabs").css("visibility", "visible");'); echo '
'; echo '

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

'; echo '
'; // Edit this source echo '
'; echo ''; $sourcefacts=$controller->record->getFacts(); foreach ($sourcefacts as $fact) { print_fact($fact, $controller->record); } // Print media print_main_media($controller->record->getXref()); // new fact link if ($controller->record->canEdit()) { print_add_new_fact($controller->record->getXref(), $sourcefacts, 'SOUR'); // new media if (get_gedcom_setting(WT_GED_ID, 'MEDIA_UPLOAD') >= WT_USER_ACCESS_LEVEL) { echo ''; } } echo '
'; echo WT_I18N::translate('Add media'), help_link('OBJE'); echo ''; echo '', WT_I18N::translate('Add a new media object'), ''; echo '
'; echo '', WT_I18N::translate('Link to an existing media object'), ''; echo '
'; // close "details" // Individuals linked to this source if ($controller->record->countLinkedIndividuals()) { echo '
'; echo format_indi_table($controller->record->fetchLinkedIndividuals(), $controller->record->getFullName()); echo '
'; //close "indi-sources" } // Families linked to this source if ($controller->record->countLinkedFamilies()) { echo '
'; echo format_fam_table($controller->record->fetchLinkedFamilies(), $controller->record->getFullName()); echo '
'; //close "fam-sources" } // Media Items linked to this source if ($controller->record->countLinkedMedia()) { echo '
'; echo format_media_table($controller->record->fetchLinkedMedia(), $controller->record->getFullName()); echo '
'; //close "media-sources" } // Shared Notes linked to this source if ($controller->record->countLinkedNotes()) { echo '
'; echo format_note_table($controller->record->fetchLinkedNotes(), $controller->record->getFullName()); echo '
'; //close "note-sources" } echo '
'; //close div "source-tabs" echo '
'; //close div "source-details"