You are here

function theme_soundmanager2_config_ui360 in SoundManager2 7.2

Theme function for adding the SoundManager 2 UI 360 player configuration. Allows other to easily override it.

1 theme call to theme_soundmanager2_config_ui360()
soundmanager2_field_formatter_view in ./soundmanager2.module
Implements hook_field_formatter_view().

File

./soundmanager2.module, line 627
Responsible for managing the required SWF and JS files for soundmanager2 to work

Code

function theme_soundmanager2_config_ui360() {
  drupal_add_js(drupal_get_path('module', 'soundmanager2') . '/ui360.js', array(
    'type' => 'file',
    'scope' => 'footer',
  ));
}