function _taxonomy_breadcrumb_tt in Taxonomy Breadcrumb 6
Same name and namespace in other branches
- 7 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 177 - 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;
}