function fe_taxonomy_features_api in Features Extra 6
Implementation of hook_features_api().
File
- ./
fe_taxonomy.module, line 16
Code
function fe_taxonomy_features_api() {
$info = array();
$key = 'fe_taxonomy_vocabulary';
$info[$key] = array(
'name' => t('Vocabularies'),
'feature_source' => TRUE,
'default_hook' => 'default_' . $key,
'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
);
return $info;
}