sm2_plst_cck_ff_ui360.tpl.php in SoundManager2 6.2
File
sm2_plst_cck/sm2_plst_cck_ff_ui360.tpl.php
View source
<?php
require_once drupal_get_path('module', 'soundmanager2') . '/players/ui360.inc';
?>
<div class="sm2_plst_cck-outer">
<div>
<?php
$children = element_children($element);
foreach ($children as $key) {
if (isset($element[$key]['#item']['filepath'])) {
?>
<div class="ui360">
<a href="<?php
print base_path() . $element[$key]['#item']['filepath'];
?>">
<?php
print $element[$key]['#item']['data']['description'] ? $element[$key]['#item']['data']['description'] : $element[$key]['#item']['filename'];
?>
</a>
</div>
<?php
}
}
?>
</div>