You are here

function uuid_file_features_export in UUID Features Integration 6

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

Implementation of hook_features_export().

File

includes/uuid_file.features.inc, line 10
Features hooks for the uuid_file features component.

Code

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