You are here

function panels_page_wizard_panels_cache_set in Panels 7.3

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

Store a display edit in progress in the page cache.

File

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

Code

function panels_page_wizard_panels_cache_set($key, $cache) {
  ctools_include('page-wizard');
  $wizard_cache = page_manager_get_wizard_cache($key);
  $wizard_cache->display_cache = $cache;
  page_manager_set_wizard_cache($wizard_cache);
}