function panels_get_caches in Panels 5.2
Same name and namespace in other branches
- 6.3 includes/plugins.inc \panels_get_caches()
- 6.2 includes/plugins.inc \panels_get_caches()
- 7.3 includes/plugins.inc \panels_get_caches()
Fetch all cache plugins
Return value
An array of arrays with information about all available panel caches.
3 calls to panels_get_caches()
- panels_content_config_add_form_submit in includes/
display_edit.inc - panels_edit_cache_method_form in includes/
display_edit.inc - Choose cache method form
- panels_edit_display in includes/
display_edit.inc - Form definition for the panels display editor
File
- includes/
plugins.inc, line 1702 - plugins.inc
Code
function panels_get_caches() {
return panels_get_plugins('cache', 'panels_cache');
}