You are here

audiofield--soundmanager2-360player.tpl.php in AudioField 7

Default theme implementation for Audiofield Soundmanager2 360 player.

Available variables:

  • $id: unique ID for the player.
  • $audio_file: Path to the audio file being rendered.

See also

template_preprocess()

File

templates/audiofield--soundmanager2-360player.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation for Audiofield Soundmanager2 360 player.
 *
 * Available variables:
 * - $id: unique ID for the player.
 * - $audio_file: Path to the audio file being rendered.
 *
 * @see template_preprocess()
 *
 * @ingroup themeable
 */
?>
<div id="<?php

print $id;
?>" class="ui360">
  <a href="<?php

print $audio_file;
?>"></a>
</div>