You are here

function panels_get_caches in Panels 6.2

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

Fetch metadata for all context plugins.

Return value

An array of arrays with information about all available panel caches.

2 calls to panels_get_caches()
panels_edit_cache_method_form in includes/display-edit.inc
Choose cache method form
panels_show_pane in includes/display-edit.inc

File

includes/plugins.inc, line 1725
plugins.inc

Code

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