You are here

function faq_path_alias_types in Frequently Asked Questions 7

Same name and namespace in other branches
  1. 7.2 faq.module \faq_path_alias_types()

Implements hook_path_alias_types().

File

./faq.module, line 1506
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_path_alias_types() {
  $objects[_faq_path() . '/'] = t('FAQ pages');
  return $objects;
}