You are here

function domain_features_api in Domain Access 7.3

Implements hook_features_api().

File

./domain.module, line 3733
Core module functions for the Domain Access suite.

Code

function domain_features_api() {
  $components = array(
    'domain' => array(
      'name' => t('Domains'),
      'default_hook' => 'domain_default_domains',
      'default_file' => FEATURES_DEFAULTS_CUSTOM,
      'default_filename' => 'domains',
      'feature_source' => TRUE,
      'file' => drupal_get_path('module', 'domain') . '/domain.features.inc',
    ),
  );
  return $components;
}