function locale_features_api in Features 7
Same name and namespace in other branches
- 7.2 includes/features.locale.inc \locale_features_api()
Implements of hook_features_api().
File
- includes/
features.locale.inc, line 11 - Features hooks for language.
Code
function locale_features_api() {
return array(
'language' => array(
'name' => t('Languages'),
'default_hook' => 'locale_default_languages',
'features_source' => TRUE,
'default_file' => FEATURES_DEFAULTS_INCLUDED,
),
);
}