You are here

function cer_unpack_field_chain in Corresponding Entity References 7.3

Unpacks the cer_left and cer_right values into a CerFieldChain object.

1 string reference to 'cer_unpack_field_chain'
cer_entity_property_info_alter in ./cer.module
Implements hook_entity_property_info_alter().

File

./cer.properties.inc, line 12
Contains entity property callback functions for the 'cer' struct exposed to Entity API.

Code

function cer_unpack_field_chain($data, array $options, $property, $entity_type, array $info) {
  return CerFieldChain::unpack($data);
}