function commerce_file_license_log_load_multiple in Commerce File 7
Load multiple commerce_file_license_logs based on certain conditions.
Parameters
$ids: An array of entity IDs.
Return value
An array of entity objects, indexed by id.
2 calls to commerce_file_license_log_load_multiple()
- CommerceFileLicenseEntity::get_logs in includes/
commerce_file_license.entity.inc - commerce_file_license_log_load in includes/
commerce_file.entities.inc - Load a single commerce_file_license
File
- includes/
commerce_file.entities.inc, line 1275 - Handles file licenses and file license logs
Code
function commerce_file_license_log_load_multiple($ids = array(), $conditions = array(), $reset = FALSE) {
if (empty($ids) && empty($conditions)) {
return array();
}
return entity_load(COMMERCE_FILE_LICENSE_LOG_ENTITY_NAME, $ids, $conditions, $reset);
}