function taxonomy_configuration_export_options in Configuration Management 7
Implements hook_configuration_export_options().
1 call to taxonomy_configuration_export_options()
File
- includes/
configuration.taxonomy.inc, line 20
Code
function taxonomy_configuration_export_options() {
$vocabularies = array();
foreach (taxonomy_get_vocabularies() as $vocabulary) {
$vocabularies[$vocabulary->machine_name] = $vocabulary->name;
}
return $vocabularies;
}