function taxonomy_features_export_options in Features 6
Same name and namespace in other branches
- 7.2 includes/features.taxonomy.inc \taxonomy_features_export_options()
- 7 includes/features.taxonomy.inc \taxonomy_features_export_options()
Implementation of hook_features_export_options().
File
- includes/
features.taxonomy.inc, line 20
Code
function taxonomy_features_export_options() {
$vocabularies = array();
foreach (_taxonomy_features_get_vocabularies() as $machine_name => $vocabulary) {
$vocabularies[$machine_name] = $vocabulary->name;
}
return $vocabularies;
}