function taxonomy_manager_tree_link in Taxonomy Manager 5
Same name and namespace in other branches
- 6 taxonomy_manager.module \taxonomy_manager_tree_link()
function gets called by taxonomy_manager_tree form type (form_id +_link) and returns an link, where to go, when a term gets clicked
Parameters
$vid vocabulary id:
1 call to taxonomy_manager_tree_link()
- taxonomy_manager_form in ./
taxonomy_manager.module - defines forms for taxonomy manager interface
File
- ./
taxonomy_manager.module, line 328 - Taxonomy Manager
Code
function taxonomy_manager_tree_link($vid) {
return "admin/content/taxonomy_manager/termdata/" . $vid;
}