You are here

function faq_term_path in Frequently Asked Questions 5.2

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

Implementation of hook_term_path().

File

./faq.module, line 1464
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;
}