You are here

field_slideshow_controls.tpl.php in Field Slideshow 7.2

Same filename and directory in other branches
  1. 7 field_slideshow_controls.tpl.php

Template file for field_slideshow_controls

File

field_slideshow_controls.tpl.php
View 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>