HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/public_html/sites/all/modules/media_gallery/media-gallery-media-item-thumbnail.tpl.php
<?php

/**
 * @file
 * Template file for displaying a media item (entity) as a thumbnail on the
 * gallery page.
 *
 * The template-specific available variables are:
 *
 * - $media_gallery_item: The rendered media gallery item.
 * - $media_gallery_meta: The rendered metadata about the item.
 *
 * @see template_preprocess_media_gallery_media_item_thumbnail()
 */
?>
<div class="<?php print $classes; ?>"<?php print $attributes; ?>>
  <?php print render($title_prefix); ?>
  <?php if (!empty($title)): ?>
    <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
  <?php endif; ?>
  <?php print render($title_suffix); ?>

  <?php print $media_gallery_item; ?>

  <?php print $media_gallery_meta; ?>
</div>