You are here

function panels_get_display_renderers in Panels 7.3

Same name and namespace in other branches
  1. 6.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 385
Contains helper code for plugins and contexts.

Code

function panels_get_display_renderers() {
  ctools_include('plugins');
  return ctools_get_plugins('panels', 'display_renderers');
}