bxslider_ths.tpl.php in BxSlider 7
Template for BxSlider.
1 theme call to bxslider_ths.tpl.php
- bxslider_field_formatter_view in ./
bxslider.module - Implements hook_field_formatter_view().
File
templates/bxslider_ths.tpl.phpView source
<?php
/**
* @file
* Template for BxSlider.
*/
?>
<div id="<?php
print $slider_id;
?>">
<ul class="bxslider" style="display:none">
<?php
foreach ($items as $item) {
?>
<li><?php
print $item['slide'];
?></li>
<?php
}
?>
</ul>
<ul class="bxslider-ths" style="display:none">
<?php
foreach ($thumbnail_items as $key => $thumbnail_item) {
?>
<li slideindex="<?php
print $key;
?>"><a href="#"><?php
print $thumbnail_item['thumbnail'];
?></a></li>
<?php
}
?>
</ul>
</div>