init(); if ($controller->repository && $controller->repository->canDisplayName()) { print_header($controller->getPageTitle()); if ($controller->repository->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->repository->getHtmlUrl().'&action=accept', $controller->repository->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->repository->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->repository->getHtmlUrl().'&action=accept', $controller->repository->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('Repository')); 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->rid; // 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->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, '"'; echo '}'; echo WT_JS_END; echo '
'; echo '', PrintReady(htmlspecialchars($controller->repository->getFullName())); echo '
'; echo ''; $repositoryfacts=$controller->repository->getFacts(); foreach ($repositoryfacts as $fact) { print_fact($fact); } // Print media print_main_media($controller->rid); // new fact link if ($controller->repository->canEdit()) { print_add_new_fact($controller->rid, $repositoryfacts, 'REPO'); // new media 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 '


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