You are here

function panels_get_cache in Panels 6.2

Same name and namespace in other branches
  1. 5.2 includes/plugins.inc \panels_get_cache()
  2. 6.3 includes/plugins.inc \panels_get_cache()
  3. 7.3 includes/plugins.inc \panels_get_cache()

Fetch metadata on a specific caching 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 1715
plugins.inc

Code

function panels_get_cache($cache) {
  return panels_get_plugins('cache', 'panels_cache', $cache);
}