You are here

function display_cache_flush_caches_form_submit in Display Cache 7

Submit handler for display_cache_flush_caches_form().

File

./display_cache.admin.inc, line 24
Provides the Display Cache administrative interface.

Code

function display_cache_flush_caches_form_submit($form, $form_state) {
  cache_clear_all('*', DISPLAY_CACHE_CACHE_BIN, TRUE);
  drupal_set_message(t('Display cache cleared.'));
}