You are here

function locale_features_api in Features 7.2

Same name and namespace in other branches
  1. 7 includes/features.locale.inc \locale_features_api()

Implements of hook_features_api().

File

includes/features.locale.inc, line 11
Features integration for 'locale' module.

Code

function locale_features_api() {
  return array(
    'language' => array(
      'name' => t('Languages'),
      /* @see \hook_locale_default_languages() */

      /* @see \hook_locale_default_languages_alter() */
      'default_hook' => 'locale_default_languages',
      'feature_source' => TRUE,
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
    ),
  );
}