i'm new in Drupal 7 and would like to know, how to get the image path in my custom field theme.
I have the following in my field--field_image_flow.tpl.php file in my theme folder:
<div id="Products" class="ContentFlow" style="overflow: visible;">
<!-- should be place before flow so that contained images will be loaded first -->
<div class="loadIndicator" style="position: relative; top: 150px">
<div class="indicator"></div>
</div>
<div class="flow" style="position: relative; top: 30px">
<?php
foreach ($items as $delta => $item):
print render($item);
endforeach;
?>
</div>
</div>
<script>
var productsFlow = new ContentFlow('Products', {
reflectionHeight: 0,
scaleFactor: 2.3,
flowSpeedFactor: 0.15,
onclickActiveItem: function (item) {
var activeItem = productsFlow.getActiveItem();
var index = productsFlow.items.indexOf(activeItem);
$.fancybox.open([
<?php
foreach ($items as $delta => $item):
echo "{";
?????IMAGEPATH????
echo "},";
endforeach;
?>
], {
padding: 0,
index: index ? index : 0
});
return false;
}
});
</script>
How do i get the imagepath out of the $item inside the foreach loop?
Thank you in advanced.