You are here

function exif_custom_features_export in EXIF Custom 7

Implements COMPONENT_features_export().

File

./exif_custom.features.inc, line 37
Features file for the exif_custom module.

Code

function exif_custom_features_export($data, &$export, $module_name) {

  // Process the features export array for mappings.
  $export['dependencies']['exif_custom'] = 'exif_custom';
  foreach ($data as $component) {
    $export['features']['exif_custom'][$component] = $component;
  }
  return array();
}