function panels_cache_set in Panels 7.3
Same name and namespace in other branches
- 5.2 panels.module \panels_cache_set()
- 6.3 panels.module \panels_cache_set()
- 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);
}