function delta_form_delta_theme_settings_config_alter in Delta 7
Same name and namespace in other branches
- 6 delta.module \delta_form_delta_theme_settings_config_alter()
 - 7.2 delta_ui.module \delta_form_delta_theme_settings_config_alter()
 
Implmentation of hook_form_alter for delta_theme_settings_config()
Return value
$form
See also
http://api.drupal.org/api/function/hook_form_FORM_ID_alter/6
http://api.drupal.org/api/function/hook_form_alter/6
File
- ./
delta.module, line 395  - The Delta Theme API is an advanced manipulation of the Theme Settings API to allow for customization/configuration of theme settings based on node types, context, or groups of paths.
 
Code
function delta_form_delta_theme_settings_config_alter(&$form, &$form_state) {
  // adding submit handler to rebuild the menu on submitting this form
  $form['#submit'][] = 'delta_menu_rebuild';
}