function faq_tt in Frequently Asked Questions 7
Same name and namespace in other branches
- 6 faq.module \faq_tt()
- 7.2 faq.module \faq_tt()
Helper function for when i18ntaxonomy module is not installed.
11 calls to faq_tt()
- faq_block_view in ./
faq.module - Implements hook_block_view().
- 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.
File
- ./
faq.module, line 1670 - 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;
}