function bat_event_delete_multiple in Booking and Availability Management Tools for Drupal 7
Same name and namespace in other branches
- 8 modules/bat_event/bat_event.module \bat_event_delete_multiple()
Delete multiple events.
Parameters
array $event_ids: An array of event IDs.
2 calls to bat_event_delete_multiple()
- bat_event_delete in modules/
bat_event/ bat_event.module - Deletes a event.
- FeatureContext::after in test/
behat/ features/ bootstrap/ FeatureContext.php - @AfterScenario
File
- modules/
bat_event/ bat_event.module, line 899 - Manage Events - Events store the EventValue of a Unit over a period of time.
Code
function bat_event_delete_multiple(array $event_ids) {
entity_get_controller('bat_event')
->delete($event_ids);
}