You are here

function search_autocomplete_features_api in Search Autocomplete 7.4

Implements hook_features_api().

Here we define the components that we want to make exportable. For this particular module, we want to make the configurations exportable.

File

./search_autocomplete.module, line 160

Code

function search_autocomplete_features_api() {
  return array(
    'search_autocomplete_config' => array(
      'name' => 'Search Autocomplete features ',
      'file' => 'search_autocomplete.features.inc',
      'default_hook' => 'search_autocomplete_config_features_default_settings',
      'feature_source' => TRUE,
    ),
  );
}