system_settings_form

Versions
4.6
system_settings_form($form)
4.7
system_settings_form($form_id, $form)
5 – 6
system_settings_form($form)
7
system_settings_form($form, $automatic_defaults = TRUE)

▾ 9 functions call system_settings_form()

comment_configure in modules/comment.module
Menu callback; presents the comment settings page.
filter_admin_configure in modules/filter.module
Menu callback; display settings defined by filters.
forum_admin_configure in modules/forum.module
Implementation of hook_settings
node_configure in modules/node.module
Menu callback; presents general node configuration options.
node_types_configure in modules/node.module
Menu callback; presents each node type configuration page.
search_admin in modules/search.module
Menu callback; displays the search module settings page.
system_site_settings in modules/system.module
Menu callback; displays a module's settings page.
upload_admin in modules/upload.module
user_configure in modules/user.module

Code

modules/system.module, line 533

<?php
function system_settings_form($form) {
  $form .= form_submit(t('Save configuration'));
  $form .= form_submit(t('Reset to defaults'));

  return form($form);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.