You are here

panels_renderer_simple.class.php in Panels 6.3

Same filename and directory in other branches
  1. 7.3 plugins/display_renderers/panels_renderer_simple.class.php

Contains the simple display renderer.

File

plugins/display_renderers/panels_renderer_simple.class.php
View source
<?php

/**
 * @file
 * Contains the simple display renderer.
 */

/**
 * The simple display renderer renders a display normally, except each pane
 * is already rendered content, rather than a pane containing CTools content
 * to be rendered. Styles are not supported.
 */
class panels_renderer_simple extends panels_renderer_standard {
  function render_regions() {
    $this->rendered['regions'] = array();
    foreach ($this->display->content as $region_id => $content) {
      if (is_array($content)) {
        $content = implode('', $content);
      }
      $this->rendered['regions'][$region_id] = $content;
    }
    return $this->rendered['regions'];
  }
  function render_panes() {

    // NOP
  }
  function prepare($external_settings = NULL) {
    $this->prep_run = TRUE;
  }

}

Classes

Namesort descending Description
panels_renderer_simple The simple display renderer renders a display normally, except each pane is already rendered content, rather than a pane containing CTools content to be rendered. Styles are not supported.