You are here

function role_export_features_api in Role Export 6

Implements hook_features_api().

File

./role_export.module, line 165
Role Export's primary module file.

Code

function role_export_features_api() {
  return array(
    'role_export' => array(
      'name' => t('Role Export'),
      'feature_source' => TRUE,
      'default_hook' => 'role_export_defaults',
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
    ),
  );
}