You are here

function brightcove_player_save in Brightcove Video Connect 7.5

Same name and namespace in other branches
  1. 7.2 brightcove.module \brightcove_player_save()
  2. 7.3 brightcove.module \brightcove_player_save()
  3. 7.4 brightcove.module \brightcove_player_save()

Save a player.

Parameters

$player:

Return value

DatabaseStatementInterface|int|null

1 call to brightcove_player_save()
brightcove_update_7002 in ./brightcove.install
Migrates old player id and key to the table.

File

./brightcove.module, line 842
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_save($player) {
  ctools_include('export');
  return ctools_export_crud_save('brightcove_player', $player);
}