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

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

'; } } elseif (find_updated_record($controller->family->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 family 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 family has been edited. The changes need to be reviewed by a moderator.'), ' ', help_link('pending_changes'), '

'; } } } elseif ($controller->family && $SHOW_PRIVATE_RELATIONSHIPS) { print_header($controller->getPageTitle()); // Continue - to display the children/parents/grandparents. // We'll check for showing the details again later } else { header('HTTP/1.0 403 Forbidden'); print_header(WT_I18N::translate('Family')); echo '

', WT_I18N::translate('This family 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_once WT_ROOT.WT_MODULES_DIR.'lightbox/functions/lb_call_js.php'; } $PEDIGREE_FULL_DETAILS = "1"; // Override GEDCOM configuration $show_full = "1"; echo WT_JS_START; echo 'function show_gedcom_record() {'; echo ' var recwin=window.open("gedrecord.php?pid=', $controller->family->getXref(), '", "_blank", "top=0, left=0, width=600, height=400, scrollbars=1, scrollable=1, resizable=1");'; echo '}'; echo 'function showchanges() { window.location="'.$controller->family->getRawUrl().'"; }'; echo WT_JS_END; ?>

family->getFullName(); ?>

getFamilyID()); ?>
getFamilyID()); if (WT_USER_CAN_EDIT) { if ($controller->difffam) { $husb=$controller->difffam->getHusband(); } else { $husb=$controller->family->getHusband(); } if (!$husb) { echo '', WT_I18N::translate('Add a new father'), help_link('edit_add_parent'), '
'; } if ($controller->difffam) { $wife=$controller->difffam->getWife(); } else { $wife=$controller->family->getWife(); } if (!$wife) { echo '', WT_I18N::translate('Add a new mother'), help_link('edit_add_parent'), '
'; } } ?>
family->canDisplayDetails()) { print_family_facts($controller->family); } else { echo '

', WT_I18N::translate('The details of this family are private.'), '

'; } ?>