init(); if ($controller->note && $controller->note->canDisplayDetails()) { print_header($controller->getPageTitle()); if ($controller->note->isMarkedDeleted()) { if (WT_USER_CAN_ACCEPT) { echo '

', /* I18N: %1$s is "accept", %2$s is "reject". These are links. */ WT_I18N::translate( 'This note 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 note has been deleted. The deletion will need to be reviewed by a moderator.'), ' ', help_link('pending_changes'), '

'; } } elseif (find_updated_record($controller->note->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 note 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 note 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('Note')); echo '

', WT_I18N::translate('This note 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->nid; // 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->note->getXref(), '", "_blank", "top=0, left=0, width=600, height=400, scrollbars=1, scrollable=1, resizable=1");'; echo '}'; echo 'function showchanges() { window.location="', $controller->note->getRawUrl(), '"; }'; echo 'function edit_note() {'; echo ' var win04 = window.open("edit_interface.php?action=editnote&pid=', $linkToID, '", "win04", "top=70, left=70, width=620, height=500, resizable=1, scrollbars=1");'; echo ' if (window.focus) {win04.focus();}'; echo '}'; ?> jQuery(document).ready(function() { jQuery("#note-tabs").tabs(); jQuery("#note-tabs").css('visibility', 'visible'); }); '; echo '

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

'; echo '
'; // Shared Note details --------------------- $noterec=$controller->note->getGedcomRecord(); preg_match("/0 @{$controller->nid}@ NOTE(.*)/", $noterec, $n1match); $note = print_note_record("
".$n1match[1], 1, $noterec, false, true, true); echo '
'; echo ''; echo '"; $notefacts=$controller->note->getFacts(); foreach ($notefacts as $fact) { if ($fact->getTag()!='CONT') { print_fact($fact, $controller->note); } } // Print media print_main_media($controller->nid); // new fact link if ($controller->note->canEdit()) { print_add_new_fact($controller->nid, $notefacts, 'NOTE'); } echo '
'; if (WT_USER_CAN_EDIT) { echo ''; if (!empty($WT_IMAGES['note']) && $SHOW_FACT_ICONS) echo ''; echo WT_I18N::translate('Shared note'), ''; echo ''; } else { if (!empty($WT_IMAGES['note']) && $SHOW_FACT_ICONS) echo ''; echo WT_I18N::translate('Shared note'); } echo ''; echo $note; echo "
"; echo "
'; // close "note-edit" // Individuals linked to this shared note if ($controller->note->countLinkedIndividuals()) { echo '
'; print_indi_table($controller->note->fetchLinkedIndividuals(), $controller->note->getFullName()); echo '
'; //close "indi-note" } // Families linked to this shared note if ($controller->note->countLinkedFamilies()) { echo '
'; print_fam_table($controller->note->fetchLinkedFamilies(), $controller->note->getFullName()); echo '
'; //close "fam-note" } // Media Items linked to this shared note if ($controller->note->countLinkedMedia()) { echo '
'; print_media_table($controller->note->fetchLinkedMedia(), $controller->note->getFullName()); echo '
'; //close "media-note" } // Sources linked to this shared note if ($controller->note->countLinkedSources()) { echo '
'; print_sour_table($controller->note->fetchLinkedSources(), $controller->note->getFullName()); echo '
'; //close "source-note" } echo '
'; //close div "note-tabs" echo ''; //close div "note-details" print_footer();