function cacheexclude_admin_settings_submit in CacheExclude 7.2
Same name and namespace in other branches
- 6.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 52
Code
function cacheexclude_admin_settings_submit() {
// Clear the page cache when new settings are added.
cache_clear_all(NULL, 'cache_page', '*');
}