You are here

function panels_renderer_ipe::render in Panels 6.3

Same name and namespace in other branches
  1. 7.3 panels_ipe/plugins/display_renderers/panels_renderer_ipe.class.php \panels_renderer_ipe::render()

Build inner content, then hand off to layout-specified theme function for final render step.

This is the outermost method in the Panels render pipeline. It calls the inner methods, which return a content array, which is in turn passed to the theme function specified in the layout plugin.

Return value

string Themed & rendered HTML output.

Overrides panels_renderer_editor::render

File

panels_ipe/plugins/display_renderers/panels_renderer_ipe.class.php, line 10

Class

panels_renderer_ipe
Renderer class for all In-Place Editor (IPE) behavior.

Code

function render() {
  $output = parent::render();
  return "<div id='panels-ipe-display-{$this->clean_key}' class='panels-ipe-display-container'>{$output}</div>";
}