You are here

function uuid_field_collection_features_export in UUID Features Integration 7

Implements hook_features_export().

File

includes/uuid_field_collection.features.inc, line 52
Features hooks for the uuid_field_collection features component.

Code

function uuid_field_collection_features_export($data, &$export, $module_name = '') {
  $export['dependencies']['field_collection'] = 'field_collection';
  $export['dependencies']['uuid'] = 'uuid';
  $export['dependencies']['uuid_features'] = 'uuid_features';
  foreach ($data as $uuid) {
    $export['features']['uuid_field_collection'][$uuid] = $uuid;
  }
  return array();
}