You are here

function commerce_file_license_delete_multiple in Commerce File 7

Delete multiple commerce_file_license.

Parameters

$ids: An array of uniform identifiers of the entities to delete.

Return value

FALSE if the given entity type isn't compatible to the CRUD API.

File

includes/commerce_file.entities.inc, line 117
Handles file licenses and file license logs

Code

function commerce_file_license_delete_multiple($ids) {
  return entity_get_controller(COMMERCE_FILE_LICENSE_ENTITY_NAME)
    ->delete($ids);
}