You are here

function _taxonomy_breadcrumb_tt in Taxonomy Breadcrumb 7

Same name and namespace in other branches
  1. 6 taxonomy_breadcrumb.inc \_taxonomy_breadcrumb_tt()

Helper function for when i18ntaxonomy module is not installed.

1 call to _taxonomy_breadcrumb_tt()
_taxonomy_breadcrumb_generate_breadcrumb in ./taxonomy_breadcrumb.inc
If the current drupal path (q=) is /node/nid, generate the breadcrumb trail based on nid.

File

./taxonomy_breadcrumb.inc, line 141
helper functions for taxonomy_breadcrumb

Code

function _taxonomy_breadcrumb_tt($string_id, $default, $language = NULL) {
  return function_exists('tt') ? tt($string_id, $default, $language) : $default;
}