You are here

function acquia_purge_form_system_performance_settings_submit in Acquia Purge 7

Form submit callback.

See also

acquia_purge_form_system_performance_settings_alter()

1 string reference to 'acquia_purge_form_system_performance_settings_submit'
acquia_purge_form_system_performance_settings_alter in ./acquia_purge.module
Implements hook_form_BASE_FORM_ID_alter().

File

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

Code

function acquia_purge_form_system_performance_settings_submit($form, &$form_state) {
  $service = _acquia_purge_service();
  drupal_set_message(t("Removed @remaining items from the queue.", array(
    '@remaining' => $service
      ->stats('remaining'),
  )));
  $service
    ->clear();
}