You are here

function cdn_form_system_performance_settings_alter in CDN 6.2

Implementation of hook_form_alter().

File

./cdn.module, line 341

Code

function cdn_form_system_performance_settings_alter(&$form, &$form_state) {

  // Add an id to the "Clear cached data" fieldset in the
  // "system_performance_settings" form, so we can link to it directly.
  $form['bandwidth_optimizations']['#attributes']['id'] = 'bw-optimizations';
  $form['clear_cache']['#attributes']['id'] = 'clear-cache';
}