function _faq_path in Frequently Asked Questions 7
Helper to get the path for the faq page.
20 calls to _faq_path()
- CRAUDFaqTestCase::testFaqCreate in ./
faq.test - Test creating an FAQ and verify its status
- CreateFaqTestCase::testFaqCreate in ./
faq.test - Test creating a FAQ node
- FaqAccessTestClass::testFaqAccess in ./
faq.test - faq_block_view in ./
faq.module - Implements hook_block_view().
- faq_general_settings_form in ./
faq.admin.inc - Define a form to edit the page header and descriptive text.
File
- ./
faq.module, line 1873 - 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() {
return variable_get('faq_path', 'faq-page');
}