init();
// Tell addmedia.php what to link to
$linkToID=$controller->sid;
print_header($controller->getPageTitle());
// LightBox
if (WT_USE_LIGHTBOX) {
require WT_ROOT.'modules/lightbox/lb_defaultconfig.php';
require WT_ROOT.'modules/lightbox/functions/lb_call_js.php';
}
if (!$controller->source) {
echo "", i18n::translate('Unable to find record with ID'), "
";
print_footer();
exit;
}
else if ($controller->source->isMarkedDeleted()) {
echo '', i18n::translate('This record has been marked for deletion upon admin approval.'), '';
}
echo WT_JS_START;
echo 'function show_gedcom_record() {';
echo ' var recwin=window.open("gedrecord.php?pid=', $controller->sid, '", "_blank", "top=0, left=0, width=600, height=400, scrollbars=1, scrollable=1, resizable=1");';
echo '}';
echo 'function showchanges() {';
echo ' window.location="source.php?sid=', $controller->sid, '&show_changes=yes"';
echo '}';
echo WT_JS_END;
echo '
| ';
if ($controller->accept_success) {
echo '', i18n::translate('Changes successfully accepted into database'), ' '; } echo '', PrintReady(htmlspecialchars($controller->source->getFullName())); echo ' '; echo '
| ||
| '; // Individuals linked to this source if ($controller->source->countLinkedIndividuals()) { print_indi_table($controller->source->fetchLinkedIndividuals(), $controller->source->getFullName()); } // Families linked to this source if ($controller->source->countLinkedFamilies()) { print_fam_table($controller->source->fetchLinkedFamilies(), $controller->source->getFullName()); } // Media Items linked to this source if ($controller->source->countLinkedMedia()) { print_media_table($controller->source->fetchLinkedMedia(), $controller->source->getFullName()); } // Shared Notes linked to this source if ($controller->source->countLinkedNotes()) { print_note_table($controller->source->fetchLinkedNotes(), $controller->source->getFullName()); } echo ' | ||