You are here

function domain_locale_features_api in Domain Locale 7

Implements hook_features_api().

File

./domain_locale.module, line 556
Provides domain specific language settings.

Code

function domain_locale_features_api() {
  $components = array(
    'domain_locale' => array(
      'name' => t('Domain locales'),
      'default_hook' => 'domain_locale_default_locales',
      'default_file' => FEATURES_DEFAULTS_CUSTOM,
      'default_filename' => 'locales',
      'features_source' => TRUE,
      'file' => drupal_get_path('module', 'domain_locale') . '/domain_locale.features.inc',
    ),
  );
  return $components;
}