imagezoom_gallery.tpl.php in Image Zoom 7.2
Template for an Image Zoom gallery.
Available variables:
- $image: The display image.
- $thumbs: An array of thumbnail images.
1 theme call to imagezoom_gallery.tpl.php
- imagezoom_gallery_field_formatter_view in modules/
imagezoom_gallery/ imagezoom_gallery.module - Implements hook_field_formatter_view().
File
modules/imagezoom_gallery/theme/imagezoom_gallery.tpl.phpView source
<?php
/**
* @file
* Template for an Image Zoom gallery.
*
* Available variables:
* - $image: The display image.
* - $thumbs: An array of thumbnail images.
*/
?>
<?php
print $image;
?>
<div id="imagezoom-thumb-wrapper">
<?php
foreach ($thumbs as $thumb) {
?>
<?php
print $thumb;
?>
<?php
}
?>
</div>