You are here

function osmplayer_get_player_paths in MediaFront 6.2

Get all the necessary paths needed by the media player

3 calls to osmplayer_get_player_paths()
osmplayer_add_js in players/osmplayer/osmplayer.module
Helper function to add all the osmplayer javascript files.
osmplayer_get_player_params in players/osmplayer/osmplayer.module
Implementation of hook_get_player_params.
osmplayer_get_player_settings in players/osmplayer/osmplayer.module
Implementation of hook_get_player_settings

File

players/osmplayer/osmplayer.module, line 236

Code

function osmplayer_get_player_paths() {
  static $paths;
  if (!$paths) {
    $paths['playerPath'] = osmplayer_get_path();
  }
  return $paths;
}