function flush_page_cache_uninstall in Flush page cache 7
Same name and namespace in other branches
- 6 flush_page_cache.install \flush_page_cache_uninstall()
Implements hook_uninstall().
File
- ./
flush_page_cache.install, line 28 - Install and uninstall functions for the 'Flush page cache' module.
Code
function flush_page_cache_uninstall() {
db_delete('variable')
->condition('name', 'flush_page_cache_%', 'LIKE')
->execute();
cache_clear_all('variables', 'cache_bootstrap');
}