amazon_gallery.tpl.php in Amazon Product Advertisement API 7.2
Template file for Amazon_store cart
1 theme call to amazon_gallery.tpl.php
- amazon_component_block_view in amazon_component/
amazon_component.module - Implements hook_block_view.
File
amazon_component/templates/amazon_gallery.tpl.phpView source
<?php
/**
* @file
* Template file for Amazon_store cart
*/
?>
<ul class="product-gallery list-inline">
<?php
if (isset($mediumimage)) {
?>
<?php
foreach ($mediumimage as $key => $value) {
?>
<li class="gallery-item"><?php
print $value;
?></li>
<?php
}
}
?>
</ul>