You are here

function brightcove_player_load in Brightcove Video Connect 7.2

Same name and namespace in other branches
  1. 7.7 brightcove.module \brightcove_player_load()
  2. 7.3 brightcove.module \brightcove_player_load()
  3. 7.4 brightcove.module \brightcove_player_load()
  4. 7.5 brightcove.module \brightcove_player_load()
  5. 7.6 brightcove.module \brightcove_player_load()
2 calls to brightcove_player_load()
brightcove_player_setdefault_form_submit in ./brightcove.admin.inc
theme_brightcove_field_embed in brightcove_field/theme.inc

File

./brightcove.module, line 494
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) {
  return db_query('SELECT * FROM {brightcove_player} WHERE name = :name', array(
    ':name' => $name,
  ))
    ->fetch();
}