You are here

function taxonomy_image_tt in Taxonomy Image 6

Helper function for when i18ntaxonomy module is not installed.

5 calls to taxonomy_image_tt()
taxonomy_image_block in contributed/taxonomy_image_blocks/taxonomy_image_blocks.module
Implementation of hook_block(). This creates and populates the "unanswered questions" block.
taxonomy_image_delete in ./taxonomy_image.module
Deletes the Taxonomy Image associated with the given termid.
taxonomy_image_display in ./taxonomy_image.module
Function to display the image associated with the given term id. An html <img> tag will be returned if an image is found. The link format can be modified with the tags parameter.
taxonomy_image_link_alter in contributed/taxonomy_image_link_alter/taxonomy_image_link_alter.module
Implement hook_link_alter to picturize the taxonomy term links
theme_taxonomy_image_display in contributed/taxonomy_image_node_display/taxonomy_image_node_display.module

File

./taxonomy_image.module, line 184
taxonomy_image.module Simple module for providing an association between taxonomy terms and images. Written by Jeremy Andrews <jeremy@kerneltrap.org>, May 2004.

Code

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