You are here

function taxonomy_features_api in Features 6

Same name and namespace in other branches
  1. 7.2 includes/features.taxonomy.inc \taxonomy_features_api()
  2. 7 includes/features.taxonomy.inc \taxonomy_features_api()

Implementation of hook_features_api().

File

includes/features.taxonomy.inc, line 6

Code

function taxonomy_features_api() {
  return array(
    'taxonomy' => array(
      'name' => t('Taxonomy'),
      'feature_source' => TRUE,
      'default_hook' => 'taxonomy_default_vocabularies',
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
    ),
  );
}