You are here

function brightcove_player_delete in Brightcove Video Connect 7.5

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

Delete a player.

Parameters

$player:

Return value

DatabaseStatementInterface

File

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