function hansel_features_export in Hansel breadcrumbs 8
Same name and namespace in other branches
- 7 hansel.features.inc \hansel_features_export()
 
Implements hook_features_export().
File
- ./
hansel.features.inc, line 6  
Code
function hansel_features_export($data, &$export, $module_name) {
  foreach ($data as $component) {
    $export['features']['hansel'][$component] = $component;
  }
  return array();
}