function pollim_delete_multiple in Poll Improved 7
Delete multiple pollims.
Parameters
$pollim_ids: An array of pollim IDs.
1 call to pollim_delete_multiple()
- MigrateDestinationPollim::bulkRollback in ./
pollim.migrate.inc - Delete a batch of pollims at once.
1 string reference to 'pollim_delete_multiple'
- MigrateDestinationPollim::bulkRollback in ./
pollim.migrate.inc - Delete a batch of pollims at once.
File
- ./
pollim.module, line 268 - Module for the Pollim Entity - a starting point to create your own Entity and associated administration interface
Code
function pollim_delete_multiple(array $pollim_ids) {
entity_get_controller('pollim')
->delete($pollim_ids);
}