function panels_get_display_renderer in Panels 6.3
Same name and namespace in other branches
- 7.3 includes/plugins.inc \panels_get_display_renderer()
Fetch metadata on a specific display renderer plugin.
Return value
An array of arrays with information about the requested panels display renderer.
2 calls to panels_get_display_renderer()
- panels_ajax_router in ./
panels.module - Route Panels' AJAX calls to the correct object.
- panels_get_renderer_handler in includes/
plugins.inc - Get and initialize the class to handle rendering a display.
File
- includes/
plugins.inc, line 362 - Contains helper code for plugins and contexts.
Code
function panels_get_display_renderer($renderer) {
ctools_include('plugins');
return ctools_get_plugins('panels', 'display_renderers', $renderer);
}