You are here

function commerce_file_license_log_save in Commerce File 7

Save a commerce_file_license_log

1 call to commerce_file_license_log_save()
CommerceFileLicenseEntity::log in includes/commerce_file_license.entity.inc
Log access to the license by the owner

File

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

Code

function commerce_file_license_log_save($values = array()) {
  return entity_get_controller(COMMERCE_FILE_LICENSE_LOG_ENTITY_NAME)
    ->create($values)
    ->save();
}