function commerce_file_license_property_getter in Commerce File 7
Callback for getting properties.
See also
commerce_file_entity_property_info()
1 string reference to 'commerce_file_license_property_getter'
File
- includes/
commerce_file.entities.inc, line 339 - Handles file licenses and file license logs
Code
function commerce_file_license_property_getter($entity, array $options, $name) {
try {
return $entity->{$name};
} catch (Exception $e) {
return NULL;
}
}