You are here

function swftools_profiles_form_content_display_overview_form_alter in SWF Tools 6.3

Implementation of hook_form_FORM_ID_alter().

Attaches an additional handler to the content_display_overview_form to flush {cache_swftools} when the form is saved.

File

profiles/swftools_profiles.module, line 334
Enables the SWF Tools profile system to allow multiple player configurations to be defined.

Code

function swftools_profiles_form_content_display_overview_form_alter(&$form, &$form_state) {
  $form['#submit'][] = 'swftools_profiles_content_display_overview_form_submit';
}