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