You are here

function faq_term_path in Frequently Asked Questions 6

Same name and namespace in other branches
  1. 5.2 faq.module \faq_term_path()

Implements hook_term_path().

File

./faq.module, line 1111
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_term_path($term) {
  return 'faq/' . $term->tid;
}