arteleku_skin/templates/islandora-video.tpl.php.bk2
2017-12-15 01:06:00 +01:00

45 lines
1.5 KiB
Plaintext

<?php
/**
* @file
* This is the template file for the object page for video
*
* Available variables:
* - $islandora_object: The Islandora object rendered in this template file
* - $islandora_dublin_core: The DC datastream object
* - $dc_array: The DC datastream object values as a sanitized array. This
* includes label, value and class name.
* - $islandora_object_label: The sanitized object label.
* - $parent_collections: An array containing parent collection(s) info.
* Includes collection object, label, url and rendered link.
*
* @see template_preprocess_islandora_video()
* @see theme_islandora_video()
*/
dpm($islandora_object);
?>
<div class="islandora-video-object islandora" vocab="http://schema.org/" prefix="dcterms: http://purl.org/dc/terms/" typeof="VideoObject">
<div class="islandora-video-content-wrapper clearfix">
<?php if ($islandora_content): ?>
<div class="islandora-video-content">
<?php print $islandora_content; ?>
</div>
<?php endif; ?>
</div>
<div class="islandora-video-metadata">
<?php print $description; ?>
<?php if ($parent_collections): ?>
<div>
<h2><?php print t('In collections'); ?></h2>
<ul>
<?php foreach ($parent_collections as $collection): ?>
<li><?php print l($collection->label, "islandora/object/{$collection->id}"); ?></li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
<?php print $metadata; ?>
</div>
</div>