You are here

function acquia_purge_form_system_performance_settings_alter in Acquia Purge 7

Implements hook_form_BASE_FORM_ID_alter().

File

./acquia_purge.module, line 265
Acquia Purge, Top-notch Varnish purging on Acquia Cloud!

Code

function acquia_purge_form_system_performance_settings_alter(&$form, &$form_state, $form_id) {
  $form['clear_cache']['clear_acquia_purge'] = array(
    '#type' => 'submit',
    '#value' => t('Clear the Acquia Purge queue'),
    '#weight' => 100,
    '#submit' => array(
      'acquia_purge_form_system_performance_settings_submit',
    ),
  );
}