function globallink_features_api in GlobalLink Connect for Drupal 7.7
Same name and namespace in other branches
- 7.5 globallink.module \globallink_features_api()
- 7.6 globallink.module \globallink_features_api()
Implementation of hook_features_api.
Here we define the components that we want to make exportable. For this particular module, we want to make the configurations exportable.
File
- ./
globallink.module, line 1781 - GlobalLink translation module.
Code
function globallink_features_api() {
return array(
'globallink_config' => array(
'name' => 'GlobalLink Configurations',
'file' => drupal_get_path('module', 'globallink') . '/globallink.features.inc',
'default_hook' => 'globallink_config_features_default_settings',
'feature_source' => TRUE,
),
);
}