function faq_filter_tips in Frequently Asked Questions 6
Implements hook_filter_tips().
File
- ./
faq.module, line 1454 - 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_filter_tips($delta, $format, $long = FALSE) {
switch ($delta) {
case 0:
return t('[faq] or [faq:123,questions_inline,categories_inline] - insert FAQ content based on the optional category, question style and category style.');
}
}