You are here

function entityform_delete_multiple in Entityform 7

Same name and namespace in other branches
  1. 7.2 entityform.module \entityform_delete_multiple()

Delete multiple entityforms.

Parameters

$entityform_ids: An array of entityform IDs.

File

./entityform.module, line 565
Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface

Code

function entityform_delete_multiple(array $entityform_ids) {
  entity_get_controller('entityform')
    ->delete($entityform_ids);
}