function faq_settings_page in Frequently Asked Questions 5.2
Same name and namespace in other branches
- 5 faq.module \faq_settings_page()
 - 6 faq.admin.inc \faq_settings_page()
 - 7.2 faq.admin.inc \faq_settings_page()
 - 7 faq.admin.inc \faq_settings_page()
 
Generates the settings form for the FAQ module.
Parameters
$op: Default value is NULL; determines what are the permissions of the current user on the FAQ.
Return value
The output, which contains the HTML code for the settings form generated by * drupal_get_form() function.
1 string reference to 'faq_settings_page'
- faq_menu in ./
faq.module  - Implementation of hook_menu().
 
File
- ./
faq.module, line 327  - 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_settings_page($op = NULL) {
  $output .= drupal_get_form('faq_general_settings_form');
  return $output;
}