init(); if ($controller->note && $controller->note->canDisplayName()) { print_header($controller->getPageTitle()); if ($controller->note->isMarkedDeleted()) { if (WT_USER_CAN_ACCEPT) { echo '
', WT_I18N::translate('This record has been deleted. You should review the deletion and then accept or reject it.', $controller->note->getHtmlUrl().'&action=accept', $controller->note->getHtmlUrl().'&action=undo'), '
'; } elseif (WT_USER_CAN_EDIT) { echo '', WT_I18N::translate('This record has been deleted. The deletion will need to be reviewed by a moderator.'), '
'; } } elseif (find_updated_record($controller->note->getXref(), WT_GED_ID)!==null) { if (WT_USER_CAN_ACCEPT) { echo '', WT_I18N::translate('This record has been edited. You should review the changes and then accept or reject them.', $controller->note->getHtmlUrl().'&action=accept', $controller->note->getHtmlUrl().'&action=undo'), '
'; } elseif (WT_USER_CAN_EDIT) { echo '', WT_I18N::translate('This record has been edited. The changes need to be reviewed by a moderator.'), '
'; } } elseif ($controller->accept_success) { echo '', WT_I18N::translate('The changes have been accepted.'), '
'; } elseif ($controller->reject_success) { echo '', WT_I18N::translate('The changes have been rejected.'), '
'; } } else { print_header(WT_I18N::translate('Note')); echo '', WT_I18N::translate('This record 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/lb_defaultconfig.php'; 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->nid, '", "_blank", "top=0, left=0, width=600, height=400, scrollbars=1, scrollable=1, resizable=1");'; echo '}'; echo 'function showchanges() {'; echo ' window.location="note.php?nid=', $controller->nid, '"'; echo '}'; 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 '}'; echo WT_JS_END; echo '| ';
echo '', PrintReady(htmlspecialchars($controller->note->getFullName()));
echo ' '; echo '
| ||||
| '; // Individuals linked to this shared note if ($controller->note->countLinkedIndividuals()) { print_indi_table($controller->note->fetchLinkedIndividuals(), $controller->note->getFullName()); } // Families linked to this shared note if ($controller->note->countLinkedFamilies()) { print_fam_table($controller->note->fetchLinkedFamilies(), $controller->note->getFullName()); } // Media Items linked to this shared note if ($controller->note->countLinkedMedia()) { print_media_table($controller->note->fetchLinkedMedia(), $controller->note->getFullName()); } // Sources linked to this shared note if ($controller->note->countLinkedSources()) { print_sour_table($controller->note->fetchLinkedSources(), $controller->note->getFullName()); } echo ' | ||||