record && $controller->record->canShow()) { $controller->pageHeader(); if ($controller->record->isOld()) { if (WT_USER_CAN_ACCEPT) { echo '

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

'; } } elseif ($controller->record->isNew()) { if (WT_USER_CAN_ACCEPT) { echo '

', /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ WT_I18N::translate( 'This media object 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 media object has been edited. The changes need to be reviewed by a moderator.'), ' ', help_link('pending_changes'), '

'; } } } else { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); $controller->pageHeader(); echo '

', WT_I18N::translate('This media object does not exist or you do not have permission to view it.'), '

'; exit; } $controller ->addInlineJavascript('function show_gedcom_record() {var recwin=window.open("gedrecord.php?pid=' . $controller->record->getXref() . '", "_blank", edit_window_specs);}') ->addInlineJavascript('jQuery("#media-tabs").tabs();') ->addInlineJavascript('jQuery("#media-tabs").css("visibility", "visible");'); $linked_indi = $controller->record->fetchLinkedIndividuals(); $linked_fam = $controller->record->fetchLinkedFamilies(); $linked_sour = $controller->record->fetchLinkedSources(); $linked_repo = $controller->record->fetchLinkedRepositories(); $linked_note = $controller->record->fetchLinkedNotes(); echo '
'; echo '

', $controller->record->getFullName(), ' ', $controller->record->getAddName(), '

'; echo '
'; echo '
'; echo '
'; // When we have a pending edit, $controller->record shows the *old* data. // As a temporary kludge, fetch a "normal" version of the record - which includes pending changes // TODO - check both, and use RED/BLUE boxes. $tmp = WT_Media::getInstance($controller->record->getXref()); echo $tmp->displayImage(); if (!$tmp->isExternal()) { if ($tmp->fileExists('main')) { if ($SHOW_MEDIA_DOWNLOAD) { echo '

' . WT_I18N::translate('Download File') . '

'; } } else { echo '

' . WT_I18N::translate('The file “%s” does not exist.', $tmp->getFilename()) . '

'; } } echo '
'; $facts = $controller->getFacts(WT_USER_CAN_EDIT || WT_USER_CAN_ACCEPT); foreach ($facts as $f=>$fact) { print_fact($fact, $controller->record); } echo '
'; // close "media-edit" echo ''; // Individuals linked to this media object if ($linked_indi) { echo '
'; echo format_indi_table($controller->record->fetchLinkedIndividuals(), $controller->record->getFullName()); echo '
'; //close "indi-media" } // Families linked to this media object if ($linked_fam) { echo '
'; echo format_fam_table($controller->record->fetchLinkedFamilies(), $controller->record->getFullName()); echo '
'; //close "fam-media" } // Sources linked to this media object if ($linked_sour) { echo '
'; echo format_sour_table($controller->record->fetchLinkedSources(), $controller->record->getFullName()); echo '
'; //close "source-media" } // Repositories linked to this media object if ($linked_repo) { echo '
'; echo format_repo_table($controller->record->fetchLinkedRepositories(), $controller->record->getFullName()); echo '
'; //close "repo-media" } // medias linked to this media object if ($linked_note) { echo '
'; echo format_note_table($controller->record->fetchLinkedNotes(), $controller->record->getFullName()); echo '
'; //close "notes-media" } echo '
'; //close div "media-tabs" echo '
'; //close div "media-details"