You are here

function weight_features_export in Weight 7.2

Implements hook_features_export().

File

./weight.features.inc, line 14

Code

function weight_features_export($data, &$export, $module_name = '') {
  $export['dependencies']['features'] = 'features';
  $export['dependencies']['weight'] = 'weight';
  foreach ($data as $setting) {
    $export['features']['weight'][$setting] = $setting;
  }
  return $export;
}