You are here

function taxonomy_title_tt in Taxonomy Title 6

Translate user defined string. Wrapper function for tt() if i18nstrings enabled.

Parameters

$name: String id in the form taxonomy_title:term:[tid]:title

1 call to taxonomy_title_tt()
_taxonomy_title_get in ./taxonomy_title.module
Retrieves the term title.

File

./taxonomy_title.module, line 222
Enhanced control over the heading tag for the taxonomy term list pages.

Code

function taxonomy_title_tt($name, $string, $langcode = NULL) {
  return function_exists('i18nstrings') ? i18nstrings($name, $string, $langcode) : $string;
}