You are here

function soundmanager2_theme in SoundManager2 7.2

Same name and namespace in other branches
  1. 6 soundmanager2.module \soundmanager2_theme()

Implmentation of hook_theme().

File

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

Code

function soundmanager2_theme() {
  return array(
    'soundmanager2_page_player' => array(
      'variables' => array(
        'tracks' => array(),
      ),
      'template' => 'soundmanager2-page-player',
    ),
    'soundmanager2_page_player_pause' => array(
      'variables' => array(),
    ),
    'soundmanager2_ui360' => array(
      'variables' => array(
        'tracks' => array(),
        'settings' => array(),
      ),
      'template' => 'soundmanager2-ui360',
    ),
    'soundmanager2_inline_player' => array(
      'variables' => array(
        'tracks' => array(),
      ),
      'template' => 'soundmanager2-inline-player',
    ),
    'soundmanager2_inline_player_pause' => array(
      'variables' => array(),
    ),
    'soundmanager2_config' => array(
      'variables' => array(),
    ),
    'soundmanager2_config_ui360' => array(
      'variables' => array(),
    ),
    'soundmanager2_config_ui360_pause' => array(
      'variables' => array(),
    ),
  );
}