You are here

function panels_cache_set in Panels 7.3

Same name and namespace in other branches
  1. 5.2 panels.module \panels_cache_set()
  2. 6.3 panels.module \panels_cache_set()
  3. 6.2 panels.module \panels_cache_set()

Save the edited object into the cache.

1 call to panels_cache_set()
panels_edit_cache_set in ./panels.module
Panels Editor Cache Set.

File

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

Code

function panels_cache_set($obj, $did, $cache) {
  ctools_include('object-cache');
  return ctools_object_cache_set($obj, 'panels_display:' . $did, $cache);
}