panel_context_panels_cache_clear

  1. drupal
    1. 6 panels.module function
    2. 7 panels.module function
Drupal 7 panel_context_panels_cache_clear($key, $cache)

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

Related topics

File

sites/all/modules/panels/panels.module, line 1596
panels.module

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);
}