You are here

function domain_theme_features_export in Domain Access 7.3

Implements hook_features_export().

File

domain_theme/domain_theme.features.inc, line 18
Features support for Domain Theme.

Code

function domain_theme_features_export($data, &$export, $module_name) {
  $export['dependencies']['domain_theme'] = 'domain_theme';
  $list = domain_features_selection($data);
  foreach ($list as $machine_name) {
    $export['features']['domain_theme'][$machine_name] = $machine_name;
  }
  domain_features_export_set_wipe_tables($export, $data, 'domain_theme');
  return array();
}