init(); if ($controller->source && $controller->source->canDisplayDetails()) { print_header($controller->getPageTitle()); if ($controller->source->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->source->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('HTTP/1.0 403 Forbidden'); print_header(WT_I18N::translate('Source')); echo '

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

'; print_footer(); exit; } // We have finished writing session data, so release the lock Zend_Session::writeClose(); if (WT_USE_LIGHTBOX) { require WT_ROOT.WT_MODULES_DIR.'lightbox/functions/lb_call_js.php'; } $linkToID=$controller->sid; // Tell addmedia.php what to link to echo WT_JS_START; echo 'function show_gedcom_record() {'; echo ' var recwin=window.open("gedrecord.php?pid=', $controller->source->getXref(), '", "_blank", "top=0, left=0, width=600, height=400, scrollbars=1, scrollable=1, resizable=1");'; echo '}'; echo 'function showchanges() { window.location="', $controller->source->getRawUrl(), '"; }'; ?> jQuery(document).ready(function() { jQuery("#source-tabs").tabs(); jQuery("#source-tabs").css('visibility', 'visible'); }); '; echo '

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

'; echo '
'; // Edit this source echo '
'; echo ''; $sourcefacts=$controller->source->getFacts(); foreach ($sourcefacts as $fact) { print_fact($fact, $controller->source); } // Print media print_main_media($controller->sid); // new fact link if ($controller->source->canEdit()) { print_add_new_fact($controller->sid, $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('add_media'); 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->source->countLinkedIndividuals()) { echo '
'; print_indi_table($controller->source->fetchLinkedIndividuals(), $controller->source->getFullName()); echo '
'; //close "indi-sources" } // Families linked to this source if ($controller->source->countLinkedFamilies()) { echo '
'; print_fam_table($controller->source->fetchLinkedFamilies(), $controller->source->getFullName()); echo '
'; //close "fam-sources" } // Media Items linked to this source if ($controller->source->countLinkedMedia()) { echo '
'; print_media_table($controller->source->fetchLinkedMedia(), $controller->source->getFullName()); echo '
'; //close "media-sources" } // Shared Notes linked to this source if ($controller->source->countLinkedNotes()) { echo '
'; print_note_table($controller->source->fetchLinkedNotes(), $controller->source->getFullName()); echo '
'; //close "note-sources" } echo '
'; //close div "source-tabs" echo ''; //close div "source-details" print_footer();