function panels_content_cache_set_cache in Panels Content Cache 7
Same name and namespace in other branches
- 6 plugins/cache/content.inc \panels_content_cache_set_cache()
Set cached content.
1 string reference to 'panels_content_cache_set_cache'
- content.inc in plugins/
cache/ content.inc - Provides a content-based caching option for panel panes.
File
- plugins/
cache/ content.inc, line 42 - Provides a content-based caching option for panel panes.
Code
function panels_content_cache_set_cache($conf, $content, $display, $args, $contexts, $pane = NULL) {
$cid = panels_content_cache_get_cid($conf, $display, $args, $contexts, $pane);
cache_set($cid, $content, 'cache_panels');
}