You are here

function _taxonomy_menu_build_variable in Taxonomy menu 6.2

Same name and namespace in other branches
  1. 8 taxonomy_menu.module \_taxonomy_menu_build_variable()
  2. 7.2 taxonomy_menu.module \_taxonomy_menu_build_variable()
  3. 7 taxonomy_menu.module \_taxonomy_menu_build_variable()
2 calls to _taxonomy_menu_build_variable()
taxonomy_menu_vocab_submit in ./taxonomy_menu.module
Submit handler for the extra settings added to the taxonomy vocab form.
_taxonomy_menu_create_options in ./taxonomy_menu.module
Creates a form array of taxonomy menu options

File

./taxonomy_menu.module, line 899
It Generates menu links for all selected taxonomy terms

Code

function _taxonomy_menu_build_variable($name, $vid) {
  $base_string = "taxonomy_menu_%s_{$vid}";
  return sprintf($base_string, $name);
}