72 lines
1.9 KiB
PHP
72 lines
1.9 KiB
PHP
<?PHP
|
|
/**
|
|
* This file displays object detail pages as fetched from museum-digital.
|
|
*
|
|
* @author Joshua Ramon Enslin <joshua@jrenslin.de>
|
|
*/
|
|
|
|
// Include functions and settings.
|
|
|
|
require_once __DIR__ . "/inc/functions.php";
|
|
|
|
// Check validity of request.
|
|
|
|
if (!isset($_GET['id']) or !is_numeric($_GET['id'])) {
|
|
echo printErrorPage($settings, "Object does not exist.");
|
|
return;
|
|
}
|
|
|
|
// Ensure working environment for frontend.
|
|
|
|
ensureEnvironment();
|
|
$pages = loadPublicPages(); // Load overview of pages.
|
|
|
|
$contents = json_decode(queryCachePage($settings['mdVersion'] . "?t=objekt&oges=" . urlencode($_GET['id']) . "&output=json", "object", $settings), true);
|
|
|
|
if (!$contents || (isset($contents[0]) and $contents[0] == "There is no object with this ID yet.")) {
|
|
echo printErrorPage($settings, "Temporarily unavailable.");
|
|
return;
|
|
}
|
|
|
|
if ($settings['limitToInstitutions'] != [] and !in_array($contents['object_institution']['institution_id'], $settings['limitToInstitutions'])) {
|
|
echo printErrorPage($settings, "This object does not belong to an enabled institution.");
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* Output
|
|
*/
|
|
$addToHead = '
|
|
<link rel="canonical" href="' . $settings['mdVersion'] . 'index.php?t=objekt&oges=' . $contents['object_id'] . '" />';
|
|
|
|
echo printPublicHead($settings, $_GET['id'], $settings['pageTitle'] . " - " . $contents['object_name'], $settings['logo'], $addToHead);
|
|
echo printPublicHeader($settings['pageTitle']);
|
|
echo printStaticPagePart("banner", "header"); // Print aside (if need be)
|
|
|
|
echo generatePublicNav($pages);
|
|
|
|
echo '
|
|
<div id="mainWrapper">
|
|
';
|
|
|
|
// Print main content
|
|
echo '
|
|
<main>';
|
|
|
|
echo drawObjectDetails($contents, $settings);
|
|
|
|
echo '
|
|
</main>
|
|
';
|
|
|
|
echo printStaticPagePart("aside", "aside"); // Print aside (if need be)
|
|
|
|
echo '
|
|
</div>';
|
|
|
|
echo printStaticPagePart("footer", "footer"); // Print footer (if need be)
|
|
|
|
echo printPublicEnd();
|
|
|
|
?>
|