You are here

function faq_settings_page in Frequently Asked Questions 7.2

Same name and namespace in other branches
  1. 5.2 faq.module \faq_settings_page()
  2. 5 faq.module \faq_settings_page()
  3. 6 faq.admin.inc \faq_settings_page()
  4. 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
Implements hook_menu().

File

./faq.admin.inc, line 18
Administrative page callbacks for the faq module.

Code

function faq_settings_page($op = NULL) {
  $output = drupal_get_form('faq_general_settings_form');
  return $output;
}