You are here

function faq_site_map in Frequently Asked Questions 5

Implementation of hook_site_map().

File

./faq.module, line 1814

Code

function faq_site_map() {
  $title = variable_get('faq_title', t('Frequently Asked Questions'));
  $output = faq_get_faq_list();
  return theme('box', $title, $output);
}