You are here

function panels_cache_set in Panels 6.3

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

Save the edited object into the cache.

Related topics

1 call to panels_cache_set()
panels_edit_cache_set in ./panels.module
Method to allow modules to provide their own caching mechanism for the display editor.

File

./panels.module, line 1270
panels.module

Code

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