You are here

function field_features_export in Features 7.2

Same name and namespace in other branches
  1. 7 includes/features.field.inc \field_features_export()

Implements hook_features_export().

File

includes/features.field.inc, line 438
Features integration on behalf of 'field' module.

Code

function field_features_export($data, &$export, $module_name = '') {
  $pipe = array();

  // Convert 'field' to 'field_instance' on features-update.
  $pipe['field_instance'] = $data;
  return $pipe;
}