panels.pipelines.inc 856 B

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