You are here

function faq_tt in Frequently Asked Questions 6

Same name and namespace in other branches
  1. 7.2 faq.module \faq_tt()
  2. 7 faq.module \faq_tt()

Helper function for when i18ntaxonomy module is not installed.

11 calls to faq_tt()
faq_block in ./faq.module
Implements hook_block().
faq_order_settings_form in ./faq.admin.inc
Define the elements for the FAQ Settings page - order tab.
faq_page in ./faq.module
Function to display the faq page.
faq_set_breadcrumb in ./faq.module
Function to set up the FAQ breadcrumbs for a given taxonomy term.
faq_view_child_category_headers in ./faq.module
Helper function to setup the list of sub-categories for the header.

... See full list

File

./faq.module, line 1410
The FAQ module allows users to create a FAQ page, with questions and answers displayed in different styles, according to the settings.

Code

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