function panels_renderer_ipe::access in Panels 7.3
6 calls to panels_renderer_ipe::access()
- panels_renderer_ipe::add_meta in panels_ipe/
plugins/ display_renderers/ panels_renderer_ipe.class.php - Attach out-of-band page metadata (e.g., CSS and JS).
- panels_renderer_ipe::prepare_panes in panels_ipe/
plugins/ display_renderers/ panels_renderer_ipe.class.php - Prepare the list of panes to be rendered, accounting for visibility/access settings and rendering order.
- panels_renderer_ipe::render in panels_ipe/
plugins/ display_renderers/ panels_renderer_ipe.class.php - Build inner content, then hand off to layout-specified theme function for final render step.
- panels_renderer_ipe::render_pane in panels_ipe/
plugins/ display_renderers/ panels_renderer_ipe.class.php - Override & call the parent, then pass output through to the dnd wrapper theme function.
- panels_renderer_ipe::render_pane_content in panels_ipe/
plugins/ display_renderers/ panels_renderer_ipe.class.php - Render the interior contents of a single pane.
File
- panels_ipe/
plugins/ display_renderers/ panels_renderer_ipe.class.php, line 32
Class
- panels_renderer_ipe
- Renderer class for all In-Place Editor (IPE) behavior.
Code
function access() {
if (is_null($this->access)) {
$this->access = $this
->invoke_panels_ipe_access();
}
return $this->access;
}