You are here

function panels_render_display in Panels 6.2

Same name and namespace in other branches
  1. 8.3 panels.module \panels_render_display()
  2. 5.2 panels.module \panels_render_display()
  3. 6.3 panels.module \panels_render_display()
  4. 7.3 panels.module \panels_render_display()

Render a display by loading the content into an appropriate array and then passing through to panels_render_layout.

if $incoming_content is NULL, default content will be applied. Use an empty string to indicate no content. @render

Related topics

7 calls to panels_render_display()
panels_mini_block in panels_mini/panels_mini.module
Implementation of hook_block().
panels_mini_content in panels_mini/panels_mini.module
Render a mini panel called from a panels display.
panels_mini_preview_panel in panels_mini/panels_mini.admin.inc
Provide an administrative preview of a mini panel.
panels_node_view in panels_node/panels_node.module
Implementation of hook_view().
panels_page_render_page_normal in panels_page/panels_page.render.inc
Execute a normal (i.e., non-form embedded) panels_page render.

... See full list

File

./panels.module, line 863
panels.module

Code

function panels_render_display(&$display) {
  panels_load_include('display-render');
  panels_load_include('plugins');
  return _panels_render_display($display);
}