Deletes multiple entities permanently.
string $entity_type: The type of the entity.
array $ids: An array of entity IDs of the entities to delete.
function entity_delete_multiple($entity_type, array $ids) {
$controller = Drupal::entityManager()
->getStorageController($entity_type);
$entities = $controller
->load($ids);
$controller
->delete($entities);
}