field_slideshow_controls.tpl.php in Field Slideshow 7.2
Same filename and directory in other branches
Template file for field_slideshow_controls
1 theme call to field_slideshow_controls.tpl.php
- field_slideshow_field_formatter_view in ./
field_slideshow.module - Implements hook_field_formatter_view().
File
field_slideshow_controls.tpl.phpView source
<?php
/**
* @file
* Template file for field_slideshow_controls
*
*
*/
?>
<div id="field-slideshow-<?php
print $slideshow_id;
?>-controls" class="field-slideshow-controls">
<a href="#" class="prev"><?php
print t('Prev');
?></a>
<?php
if (!empty($controls_pause)) {
?>
<a href="#" class="play"><?php
print t('Play');
?></a>
<a href="#" class="pause"><?php
print t('Pause');
?></a>
<?php
}
?>
<a href="#" class="next"><?php
print t('Next');
?></a>
</div>