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

"; print_footer(); exit; } else if ($controller->repository->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->rid, '", "_blank", "top=0, left=0, width=600, height=400, scrollbars=1, scrollable=1, resizable=1");'; echo '}'; echo 'function showchanges() {'; echo ' window.location="repo.php?rid=', $controller->rid, '&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->repository->getFullName())); echo '
'; echo ''; $repositoryfacts=$controller->repository->getFacts(); foreach ($repositoryfacts as $fact) { if ($fact) { if ($fact->getTag()=='NOTE') { print_main_notes($fact->getGedcomRecord(), 1, $controller->rid, $fact->getLineNumber()); } else { print_fact($fact); } } } // Print media print_main_media($controller->rid); // new fact link if (!$controller->isPrintPreview() && $controller->userCanEdit()) { print_add_new_fact($controller->rid, $repositoryfacts, 'REPO'); // new media 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 '


'; // Sources linked to this repository if ($controller->repository->countLinkedSources()) { print_sour_table($controller->repository->fetchLinkedSources(), $controller->repository->getFullName()); } echo '
'; print_footer(); ?>