You are here

function commerce_file_license_log_delete_multiple in Commerce File 7

Delete multiple commerce_file_license_logs.

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 1246
Handles file licenses and file license logs

Code

function commerce_file_license_log_delete_multiple($ids) {
  return entity_get_controller(COMMERCE_FILE_LICENSE_LOG_ENTITY_NAME)
    ->delete($ids);
}