soundmanager2-ui360.tpl.php in SoundManager2 7.2
Soundmanager 2 UI 360 template
1 theme call to soundmanager2-ui360.tpl.php
- soundmanager2_field_formatter_view in ./
soundmanager2.module - Implements hook_field_formatter_view().
File
soundmanager2-ui360.tpl.phpView source
<?php
/**
* @file
* Soundmanager 2 UI 360 template
*/
if ($settings['inline']) {
?>
<div class="sm2-inline-list clearfix">
<?php
foreach ($tracks as $track) {
?>
<div class="ui360<?php
print $settings['visualization'] ? ' ui360-vis' : '';
?>"><?php
print $track;
?></div>
<?php
}
?>
</div>
<?php
}
else {
?>
<?php
foreach ($tracks as $track) {
?>
<div class="ui360<?php
print $settings['visualization'] ? ' ui360-vis' : '';
?>"><?php
print $track;
?></div>
<?php
}
}