You are here

function brightcove_player_load_all in Brightcove Video Connect 7.2

Same name and namespace in other branches
  1. 7.7 brightcove.module \brightcove_player_load_all()
  2. 7.3 brightcove.module \brightcove_player_load_all()
  3. 7.4 brightcove.module \brightcove_player_load_all()
  4. 7.5 brightcove.module \brightcove_player_load_all()
  5. 7.6 brightcove.module \brightcove_player_load_all()
1 call to brightcove_player_load_all()
brightcove_admin_players in ./brightcove.admin.inc

File

./brightcove.module, line 501
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_all() {
  return db_query('SELECT * FROM {brightcove_player} ORDER BY name')
    ->fetchAll();
}