You are here

function features_template_field_instance_key in Features Items Template 7

Creates the key for the array of field instances.

3 calls to features_template_field_instance_key()
features_template_field_instance in plugins/field_instance.inc
Customizes the field instance template for this data.
features_template_field_instance_delete in plugins/field_instance.inc
features_template_field_instance_info in plugins/field_instance.inc
Callback that adds an entry into system info for thefield instance.

File

plugins/field_instance.inc, line 60

Code

function features_template_field_instance_key($datum) {
  return implode('-', array(
    $datum['entity_type'],
    $datum['bundle_type'],
    $datum['field'],
  ));
}