function brightcove_player_delete in Brightcove Video Connect 7.2
Same name and namespace in other branches
- 7.3 brightcove.module \brightcove_player_delete()
- 7.4 brightcove.module \brightcove_player_delete()
- 7.5 brightcove.module \brightcove_player_delete()
1 call to brightcove_player_delete()
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();
}