You are here

function commerce_file_field_attach_update in Commerce File 7

Implements hook_field_attach_update().

This hook is used to unserialize the commerce_file field's data array after it has been updated, because the data array is serialized before it is saved and must be unserialized for compatibility with API requests performed during the same request after the update occurs.

File

includes/commerce_file.field.inc, line 192
Implement an commerce_file field, based on the file module's file field.

Code

function commerce_file_field_attach_update($entity_type, $entity) {
  _commerce_file_field_unserialize_data($entity_type, $entity);
}