[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/modules/panels/includes/ -> panels.pipelines.inc (source)

   1  <?php
   2  // $Id: panels.pipelines.inc,v 1.1.2.1 2010/07/06 23:59:00 merlinofchaos Exp $
   3  
   4  /**
   5   * @file
   6   * Bulk export of panels_layouts objects generated by Bulk export module.
   7   */
   8  
   9  /**
  10   * Implementation of hook_default_panels_layout()
  11   */
  12  function panels_default_panels_renderer_pipeline() {
  13    $pipelines = array();
  14  
  15    $pipeline = new stdClass;
  16    $pipeline->disabled = FALSE; /* Edit this to true to make a default pipeline disabled initially */
  17    $pipeline->api_version = 1;
  18    $pipeline->name = 'standard';
  19    $pipeline->admin_title = t('Standard');
  20    $pipeline->admin_description = t('Renders a panel normally. This is the most common option.');
  21    $pipeline->weight = -100;
  22    $pipeline->settings = array(
  23      'renderers' => array(
  24        0 => array(
  25          'access' => array(),
  26          'renderer' => 'standard',
  27          'options' => array(),
  28        ),
  29      ),
  30    );
  31    $pipelines[$pipeline->name] = $pipeline;
  32  
  33    return $pipelines;
  34  }


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7