You are here

soundmanager2-page-player.tpl.php in SoundManager2 7.2

Page player template

File

soundmanager2-page-player.tpl.php
View source
<?php

/**
 * @file
 * Page player template
 */
?>
<ul class="playlist">
  <?php

foreach ($tracks as $delta => $track) {
  ?>
    <li><?php

  print $track;
  ?></li>
  <?php

}
?>
</ul>