function panels_get_display_renderers in Panels 6.3
Same name and namespace in other branches
- 7.3 includes/plugins.inc \panels_get_display_renderers()
Fetch metadata for all display renderer plugins.
Return value
An array of arrays with information about all available panels display renderer.
File
- includes/
plugins.inc, line 374 - Contains helper code for plugins and contexts.
Code
function panels_get_display_renderers() {
ctools_include('plugins');
return ctools_get_plugins('panels', 'display_renderers');
}