1 entity_test.module | entity_test_delete_multiple(array $ids) |
Deletes multiple test entities.
Parameters
$ids: An array of test entity IDs.
File
- core/
modules/ entity/ tests/ entity_test/ entity_test.module, line 88 - Test module for the entity API providing an entity type for testing.
Code
function entity_test_delete_multiple(array $ids) {
entity_get_controller('entity_test')->delete($ids);
}