function boost_clear_core_page_cache_submit in Boost 6
Flushes core page cache
1 string reference to 'boost_clear_core_page_cache_submit'
- boost_admin_performance_page in ./
boost.admin.inc - Performs alterations to the system settings form before it is rendered.
File
- ./
boost.admin.inc, line 44 - All the code for the Boost module's administrative interface.
Code
function boost_clear_core_page_cache_submit($form, &$form_state) {
cache_clear_all('*', 'cache_page', TRUE);
drupal_set_message(t('Core page cache cleared.'));
}