You are here

function taxonomy_manager_tree_link in Taxonomy Manager 6

Same name and namespace in other branches
  1. 5 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:

File

./taxonomy_manager.module, line 179
Taxonomy Manager

Code

function taxonomy_manager_tree_link($term) {
  return "admin/content/taxonomy_manager/termdata/" . $term->vid . "/" . $term->tid;
}