function taxonomy_configuration_api in Configuration Management 7
Implements hook_configuration_api().
File
- includes/
configuration.taxonomy.inc, line 6
Code
function taxonomy_configuration_api() {
return array(
'taxonomy' => array(
'name' => t('Taxonomy'),
'feature_source' => TRUE,
'default_hook' => 'taxonomy_default_vocabularies',
'default_file' => CONFIGURATION_DEFAULTS_INCLUDED,
),
);
}