You are here

esi_panels_pipeline_renderer_access.inc in ESI: Edge Side Includes 7.3

Plugin to provide access control to renderer pipelines.

File

modules/esi_panels/plugins/access/esi_panels_pipeline_renderer_access.inc
View source
<?php

/**
 * @file
 * Plugin to provide access control to renderer pipelines.
 */

/**
 * Plugins are described by creating a $plugin array which will be used
 * by the system that includes this file.
 */
$plugin = array(
  'title' => t('Renderer access'),
  'description' => t('Control access to renderer pipelines.'),
  'callback' => 'esi_panels_pipeline_renderer_ctools_access_check',
  'default' => array(),
  'all contexts' => TRUE,
);

/**
 * Access check to control which ESI pipeline should be used.
 */
function esi_panels_pipeline_renderer_ctools_access_check($conf, $context, $plugin) {

  // Discover the original pipeline that was intended.
  $intended_pipeline = _esi_panels__pipeline_renderer_ctools_access_check_find_pipeline();

  // Discover the original intended pipeline, and find the ESI equivalent.
  if ($intended_pipeline) {

    // $conf['pipeline'] will contain the name of the ESI pipeline being
    // tested: e.g. 'esi_ipe'.
    // The original pipeline should be in $conf['original_pipeline'].
    if ($conf['pipeline'] == 'esi_' . $intended_pipeline) {
      return TRUE;
    }
  }

  // The 'esi_standard' pipeline is always accessible, as this is the fallback
  // for any panels containing ESI panes.
  return $conf['pipeline'] == 'esi_standard';
}

/**
 * Use debug_backtrace() to discover the original intended pipeline.
 */
function _esi_panels__pipeline_renderer_ctools_access_check_find_pipeline() {
  $trace = debug_backtrace();

  // Core panels module.
  if ($trace[4]['function'] == 'panels_panel_context_render') {
    $handler = $trace[4]['args'][0];
    if (isset($handler->conf['original_pipeline'])) {
      return $handler->conf['original_pipeline'];
    }
  }
  elseif ($trace[4]['function'] == 'render_entity' && $trace[4]['class'] == 'PanelizerEntityDefault') {
    $object = $pipeline = $trace[4]['args'][0];
    return $object->panelizer['page_manager']->extra['original_pipeline'];
  }
}

Functions

Namesort descending Description
esi_panels_pipeline_renderer_ctools_access_check Access check to control which ESI pipeline should be used.
_esi_panels__pipeline_renderer_ctools_access_check_find_pipeline Use debug_backtrace() to discover the original intended pipeline.