soundmanager2-page-player.tpl.php in SoundManager2 7.2
Page player template
1 theme call to soundmanager2-page-player.tpl.php
- soundmanager2_field_formatter_view in ./
soundmanager2.module - Implements hook_field_formatter_view().
File
soundmanager2-page-player.tpl.phpView source
<?php
/**
* @file
* Page player template
*/
?>
<ul class="playlist">
<?php
foreach ($tracks as $delta => $track) {
?>
<li><?php
print $track;
?></li>
<?php
}
?>
</ul>