You are here

function brightcove_player_delete in Brightcove Video Connect 7.2

Same name and namespace in other branches
  1. 7.3 brightcove.module \brightcove_player_delete()
  2. 7.4 brightcove.module \brightcove_player_delete()
  3. 7.5 brightcove.module \brightcove_player_delete()
1 call to brightcove_player_delete()
brightcove_player_delete_form_submit in ./brightcove.admin.inc

File

./brightcove.module, line 523
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($name) {
  return db_delete('brightcove_player')
    ->condition('name', $name)
    ->execute();
}