function panels_get_cache in Panels 5.2
Same name and namespace in other branches
- 6.3 includes/plugins.inc \panels_get_cache()
- 6.2 includes/plugins.inc \panels_get_cache()
- 7.3 includes/plugins.inc \panels_get_cache()
Fetch a cache plugin
Parameters
$cache: Name of a panel cache.
Return value
An array with information about the requested panel cache.
1 call to panels_get_cache()
- panels_edit_cache_settings_form in includes/
display_edit.inc - Cache settings form
File
- includes/
plugins.inc, line 1692 - plugins.inc
Code
function panels_get_cache($cache) {
return panels_get_plugins('cache', 'panels_cache', $cache);
}