1 layout_renderer_flexible.inc | LayoutRendererFlexible::render() |
Render the entire editor HTML and attach meta data.
Return value
string: Themed & rendered HTML output.
File
- core/
modules/ layout/ plugins/ renderers/ layout_renderer_flexible.inc, line 104
Class
- LayoutRendererFlexible
- The renderer for the flexible template editor.
Code
function render() {
$this->addMeta();
$output = '<div id="layout-flexible-edit-main">';
$output .= $this->renderEditor();
$output .= '</div>';
return $output;
}