7 system.module | system_settings_form($form) |
4.6 system.module | system_settings_form($form) |
4.7 system.module | system_settings_form( |
5 system.module | system_settings_form($form) |
6 system.module | system_settings_form($form) |
8 system.module | system_settings_form($form) |
Add default buttons to a form and set its prefix.
Parameters
$form: An associative array containing the structure of the form.
Return value
The form structure.
See also
Related topics
22 calls to system_settings_form()
- book_admin_settings in modules/
book/ book.admin.inc - Form constructor for the book settings form.
- forum_admin_settings in modules/
forum/ forum.admin.inc - Form constructor for the forum settings page.
- locale_language_providers_session_form in modules/
locale/ locale.admin.inc - The URL language provider configuration form.
- locale_language_providers_url_form in modules/
locale/ locale.admin.inc - The URL language provider configuration form.
- menu_configure in modules/
menu/ menu.admin.inc - Menu callback; Build the form presenting menu configuration options.
1 string reference to 'system_settings_form'
- system_theme in modules/
system/ system.module - Implements hook_theme().
File
- modules/
system/ system.module, line 2744 - Configuration system that lets administrators modify the workings of the site.
Code
function system_settings_form($form) {
$form['actions']['#type'] = 'actions';
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('Save configuration'),
);
if (!empty($_POST) && form_get_errors()) {
drupal_set_message(t('The settings have not been saved because of the errors.'), 'error');
}
$form['#submit'][] = 'system_settings_form_submit';
// By default, render the form using theme_system_settings_form().
if (!isset($form['#theme'])) {
$form['#theme'] = 'system_settings_form';
}
return $form;
}