. */ namespace Fisharebest\Webtrees; /** * Defined in session.php * * @global Tree $WT_TREE */ global $WT_TREE; use Fisharebest\Webtrees\Controller\MediaController; use Fisharebest\Webtrees\Functions\FunctionsPrint; use Fisharebest\Webtrees\Functions\FunctionsPrintFacts; use Fisharebest\Webtrees\Functions\FunctionsPrintLists; define('WT_SCRIPT_NAME', 'mediaviewer.php'); require './includes/session.php'; $controller = new MediaController; if ($controller->record && $controller->record->canShow()) { $controller->pageHeader(); if ($controller->record->isPendingDeletion()) { if (Auth::isModerator($controller->record->getTree())) { echo '

', /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate( 'This media object has been deleted. You should review the deletion and then %1$s or %2$s it.', '' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'accept') . '', '' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'reject') . '' ), ' ', FunctionsPrint::helpLink('pending_changes'), '

'; } elseif (Auth::isEditor($controller->record->getTree())) { echo '

', I18N::translate('This media object has been deleted. The deletion will need to be reviewed by a moderator.'), ' ', FunctionsPrint::helpLink('pending_changes'), '

'; } } elseif ($controller->record->isPendingAddtion()) { if (Auth::isModerator($controller->record->getTree())) { echo '

', /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate( 'This media object has been edited. You should review the changes and then %1$s or %2$s them.', '' . I18N::translateContext('You should review the changes and then accept or reject them.', 'accept') . '', '' . I18N::translateContext('You should review the changes and then accept or reject them.', 'reject') . '' ), ' ', FunctionsPrint::helpLink('pending_changes'), '

'; } elseif (Auth::isEditor($controller->record->getTree())) { echo '

', I18N::translate('This media object has been edited. The changes need to be reviewed by a moderator.'), ' ', FunctionsPrint::helpLink('pending_changes'), '

'; } } } else { http_response_code(404); $controller->pageHeader(); echo '

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

'; return; } $controller->addInlineJavascript(' jQuery("#media-tabs") .tabs({ create: function(e, ui){ jQuery(e.target).css("visibility", "visible"); // prevent FOUC } }); '); $linked_indi = $controller->record->linkedIndividuals('OBJE'); $linked_fam = $controller->record->linkedFamilies('OBJE'); $linked_sour = $controller->record->linkedSources('OBJE'); $linked_repo = $controller->record->linkedRepositories('OBJE'); // Invalid GEDCOM - you cannot link a REPO to an OBJE $linked_note = $controller->record->linkedNotes('OBJE'); // Invalid GEDCOM - you cannot link a NOTE to an OBJE 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 // Perhaps check both, and use RED/BLUE boxes. $tmp = Media::getInstance($controller->record->getXref(), $WT_TREE); echo $tmp->displayImage(); if (!$tmp->isExternal()) { if ($tmp->fileExists('main')) { if ($controller->record->getTree()->getPreference('SHOW_MEDIA_DOWNLOAD')) { echo '

' . I18N::translate('Download file') . '

'; } } else { echo '

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

'; } } echo '
'; $facts = $controller->getFacts(); foreach ($facts as $f => $fact) { FunctionsPrintFacts::printFact($fact, $controller->record); } echo '
'; echo ''; // Individuals linked to this media object if ($linked_indi) { echo '
', FunctionsPrintLists::individualTable($linked_indi), '
'; } // Families linked to this media object if ($linked_fam) { echo '
', FunctionsPrintLists::familyTable($linked_fam), '
'; } // Sources linked to this media object if ($linked_sour) { echo '
', FunctionsPrintLists::sourceTable($linked_sour), '
'; } // Repositories linked to this media object if ($linked_repo) { echo '
', FunctionsPrintLists::repositoryTable($linked_repo), '
'; } // medias linked to this media object if ($linked_note) { echo '
', FunctionsPrintLists::noteTable($linked_note), '
'; } echo '
'; echo '
';