You are here

function content_features_identifier in Features 6

Callback for generating the field exportable identifier for a field.

1 call to content_features_identifier()
content_features_export_render in includes/features.content.inc
Implementation of hook_features_export_render().
1 string reference to 'content_features_identifier'
content_features_export in includes/features.content.inc
Implementation of hook_features_export().

File

includes/features.content.inc, line 190

Code

function content_features_identifier($field) {
  return isset($field['type_name'], $field['field_name']) ? "{$field['type_name']}-{$field['field_name']}" : FALSE;
}