You are here

function brightcove_player_load in Brightcove Video Connect 7.4

Same name and namespace in other branches
  1. 7.7 brightcove.module \brightcove_player_load()
  2. 7.2 brightcove.module \brightcove_player_load()
  3. 7.3 brightcove.module \brightcove_player_load()
  4. 7.5 brightcove.module \brightcove_player_load()
  5. 7.6 brightcove.module \brightcove_player_load()

Load a player.

Parameters

$name:

Return value

mixed

2 calls to brightcove_player_load()
brightcove_default_player in ./brightcove.module
Get the default player.
brightcove_field_preprocess_brightcove_field_embed in brightcove_field/theme.inc
The brightcove_field_embed theme function preprocess function.

File

./brightcove.module, line 761
Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.

Code

function brightcove_player_load($name) {
  $players = brightcove_player_load_all();
  return $players[$name];
}