You are here

function domain_theme_features_api in Domain Access 7.3

Implements hook_features_api().

File

domain_theme/domain_theme.module, line 319
Domain Theme module for the Domain Access module group.

Code

function domain_theme_features_api() {
  $components = array(
    'domain_theme' => array(
      'name' => t('Domain themes'),
      'default_hook' => 'domain_theme_default_themes',
      'default_file' => FEATURES_DEFAULTS_CUSTOM,
      'default_filename' => 'domains',
      'feature_source' => TRUE,
      'file' => drupal_get_path('module', 'domain_theme') . '/domain_theme.features.inc',
    ),
  );
  return $components;
}