function hook_variable_settings_form_alter in Variable 7.2
Same name and namespace in other branches
- 7 variable.api.php \hook_variable_settings_form_alter()
Alter system settings forms.
This is a special version of hook_form_alter() that is triggered only for system settings forms, and only after any other module has added/removed variables using hook_form_alter().
It is used to mark / replace special realm variables that are contained in the form.
See also
variable_module_implements_alter()
1 function implements hook_variable_settings_form_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- variable_realm_variable_settings_form_alter in variable_realm/
variable_realm.variable.inc - Implements hook_variable_settings_form_alter().
1 invocation of hook_variable_settings_form_alter()
- variable_form_alter in ./
variable.module - Implements hook_form_alter().
File
- ./
variable.api.php, line 251 - Hooks provided by the Variable module.
Code
function hook_variable_settings_form_alter(&$form, &$form_state, $form_id) {
}