init(); // Tell addmedia.php what to link to $linkToID=$controller->nid; 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->note){ echo "", i18n::translate('Unable to find record with ID'), "

"; print_footer(); exit; } else if ($controller->note->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->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, '&show_changes=yes"'; 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 '
'; if ($controller->accept_success) { echo '', i18n::translate('Changes successfully accepted into database'), '
'; } echo '', PrintReady(htmlspecialchars($controller->note->getFullName())); echo '
'; echo ''; echo '
'; // Shared Note details --------------------- $noterec = find_gedcom_record($controller->nid, WT_GED_ID); $nt = preg_match("/0 @$controller->nid@ NOTE(.*)/", $noterec, $n1match); if ($nt==1) { $note = print_note_record("
".$n1match[1], 1, $noterec, false, true); }else{ $note = "No Text"; } echo '"; $notefacts=$controller->note->getFacts(); foreach ($notefacts as $fact) { if ($fact && $fact->getTag()!='CONT') { if ($fact->getTag()=='NOTE' ) { print_fact($fact); } else { print_fact($fact); } } } // Print media print_main_media($controller->nid); // new fact link if (!$controller->isPrintPreview() && $controller->userCanEdit()) { print_add_new_fact($controller->nid, $notefacts, 'NOTE'); // new media echo ''; } echo '
'; echo '
'; if (!empty($WT_IMAGES["notes"]["small"]) && $SHOW_FACT_ICONS) echo '', i18n::translate('Shared note'), ' '; echo i18n::translate('Shared note'), "
"; echo '

'; if (WT_USER_CAN_EDIT) { echo " "; echo i18n::translate('Edit'); echo ""; } echo '
'; echo $note; echo "
"; echo "
'; echo i18n::translate('Add media'), help_link('add_media'); echo ''; echo '', i18n::translate('Add a new media item'), ''; echo '
'; echo '', i18n::translate('Link to an existing Media item'), ''; 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 '
'; print_footer(); ?>