You are here

function taxonomy_manager_taxonomy_manager_tree_link in Taxonomy Manager 6.2

Same name and namespace in other branches
  1. 7 taxonomy_manager.module \taxonomy_manager_taxonomy_manager_tree_link()

function gets called by taxonomy_manager_tree form type ('taxonomy_manager_'. form_id .'_link') and returns an link, where to go, when a term gets clicked

Parameters

$vid vocabulary id:

1 call to taxonomy_manager_taxonomy_manager_tree_link()
taxonomy_manager_taxonomy2_manager_tree_link in ./taxonomy_manager.module

File

./taxonomy_manager.module, line 202
Taxonomy Manager

Code

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