function taxonomy_menu_get_vocabulary_settings in Taxonomy menu 8
Same name and namespace in other branches
- 7.2 taxonomy_menu.admin.inc \taxonomy_menu_get_vocabulary_settings()
Get all the taxonomy vocabulary settings available in modules implementing the hook.
This is useful in order to process the different settings altogether.
Return value
array An array of available Taxonomy Menu settings and their respective defaults.
1 call to taxonomy_menu_get_vocabulary_settings()
- _taxonomy_menu_get_changed_settings in ./
taxonomy_menu.admin.inc - Helper function to find which submitted values have changed upon submission of a vocabulary's creation/updating form.
File
- ./
taxonomy_menu.admin.inc, line 254 - Administrative page callbacks for the Taxonomy menu module.
Code
function taxonomy_menu_get_vocabulary_settings() {
return module_invoke_all('taxonomy_menu_vocabulary_settings');
}