You are here

function fe_profile_features_export in Features Extra 7

Implements hook_features_export().

File

fe_profile/fe_profile.module, line 41
Main functions and hook implementations for FE Profile.

Code

function fe_profile_features_export($data, &$export, $module_name = '') {
  $export['dependencies']['profile'] = 'profile';
  foreach ($data as $machine_name) {
    $export['features']['fe_profile'][$machine_name] = $machine_name;
  }
  return array();
}