function faq_settings_page in Frequently Asked Questions 7
Same name and namespace in other branches
- 5.2 faq.module \faq_settings_page()
- 5 faq.module \faq_settings_page()
- 6 faq.admin.inc \faq_settings_page()
- 7.2 faq.admin.inc \faq_settings_page()
Generates the settings form for the FAQ module.
Parameters
string $op: Default value is NULL; determines what are the permissions of the current user on the FAQ.
Return value
string 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 19 - Administrative page callbacks for the faq module.
Code
function faq_settings_page($op = NULL) {
$output = drupal_get_form('faq_general_settings_form');
return $output;
}