function fe_profile_features_api in Features Extra 7
Implements hook_features_api().
File
- fe_profile/fe_profile.module, line 11 
- Main functions and hook implementations for FE Profile.
Code
function fe_profile_features_api() {
  return array(
    'fe_profile' => array(
      'name' => t('Profile fields'),
      'feature_source' => TRUE,
      'default_hook' => 'fe_profile_export_fields',
      'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
    ),
  );
}