You are here

function panel_context_panels_cache_clear in Panels 7.3

Same name and namespace in other branches
  1. 8.3 panels.module \panel_context_panels_cache_clear()
  2. 6.3 panels.module \panel_context_panels_cache_clear()

Save all changes made to a display using the Page Manager page cache.

File

./panels.module, line 1884
Core functionality for the Panels engine.

Code

function panel_context_panels_cache_clear($key, $cache) {
  $page = _panel_context_panels_cache_get_page_cache($key, $cache);
  page_manager_clear_page_cache($page->task_name);
}