function flush_page_cache_uninstall in Flush page cache 6
Same name and namespace in other branches
- 7 flush_page_cache.install \flush_page_cache_uninstall()
Implementation of hook_uninstall().
File
- ./
flush_page_cache.install, line 23 - Install and uninstall functions for the 'Flush page cache' module.
Code
function flush_page_cache_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'flush_page_cache_%'");
cache_clear_all('variables', 'cache');
}