You are here

function cacheexclude_admin_settings_submit in CacheExclude 6.2

Same name and namespace in other branches
  1. 7.2 cacheexclude.module \cacheexclude_admin_settings_submit()

Clear the cache when the admin settings form is submitted.

1 string reference to 'cacheexclude_admin_settings_submit'
cacheexclude_admin_settings in ./cacheexclude.module
Administrative settings form.

File

./cacheexclude.module, line 58

Code

function cacheexclude_admin_settings_submit() {

  // Clear the page cache when new settings are added.
  cache_clear_all(NULL, 'cache_page', '*');
}