function panels_ajax_tab_flush_caches in Panels Ajax Tabs 7
Implements hook_flush_caches().
File
- ./
panels_ajax_tab.module, line 457 - Allows users to create and manage Panels Ajax Tabs.
Code
function panels_ajax_tab_flush_caches() {
// After caches are cleared we will run panels_ajax_tab_config_cache
// to immediately rebuild the url-cache.
register_shutdown_function('panels_ajax_tab_config_cache');
// We don't want to add any custom cache-tables, just return an empty array.
return array();
}