You are here

function brightcove_player_list in Brightcove Video Connect 7.2

Same name and namespace in other branches
  1. 7.7 brightcove.module \brightcove_player_list()
  2. 7.3 brightcove.module \brightcove_player_list()
  3. 7.4 brightcove.module \brightcove_player_list()
  4. 7.5 brightcove.module \brightcove_player_list()
  5. 7.6 brightcove.module \brightcove_player_list()
2 calls to brightcove_player_list()
brightcove_field_field_instance_settings_form in brightcove_field/brightcove_field.module
Implements hook_field_settings_form().
brightcove_field_field_widget_form in brightcove_field/brightcove_field.module
Implements hook_field_widget_form().

File

./brightcove.module, line 506
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_list() {
  return db_query('SELECT name FROM {brightcove_player} ORDER BY name')
    ->fetchAllKeyed(0, 0);
}