function _display_cache_clear_cache in Display Cache 7
Clears cache of display_cache module.
2 string references to '_display_cache_clear_cache'
- display_cache_admin_menu_cache_info in ./
display_cache.module - Implements hook_admin_menu_cache_info().
- display_cache_drush_cache_clear in drush/
display_cache.drush.inc - Implements hook_drush_cache_clear().
File
- ./
display_cache.module, line 538 - Module file for Display Cache.
Code
function _display_cache_clear_cache() {
cache_clear_all('*', DISPLAY_CACHE_CACHE_BIN, TRUE);
}