You are here

function commerce_file_license_log_delete in Commerce File 7

Delete a single commerce_file_license_log.

Parameters

$id: The uniform identifier of the entity to delete.

Return value

FALSE, if there were no information how to delete the entity.

File

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

Code

function commerce_file_license_log_delete($id) {
  return entity_get_controller(COMMERCE_FILE_LICENSE_LOG_ENTITY_NAME)
    ->delete(array(
    $id,
  ));
}