You are here

function delta_form_delta_theme_settings_config_alter in Delta 6

Same name and namespace in other branches
  1. 7 delta.module \delta_form_delta_theme_settings_config_alter()
  2. 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';
}