-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathos2web_base.layouts.inc
More file actions
87 lines (84 loc) · 1.99 KB
/
os2web_base.layouts.inc
File metadata and controls
87 lines (84 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/**
* @file
* os2web_base.layouts.inc
*/
/**
* Implements hook_default_panels_layout().
*/
function os2web_base_default_panels_layout() {
$export = array();
$layout = new stdClass();
$layout->disabled = FALSE; /* Edit this to true to make a default layout disabled initially */
$layout->api_version = 1;
$layout->name = 'node_edit';
$layout->admin_title = 'Node edit';
$layout->admin_description = '';
$layout->category = 'CMS Theme';
$layout->plugin = 'flexible';
$layout->settings = array(
'items' => array(
'canvas' => array(
'type' => 'row',
'contains' => 'column',
'children' => array(
0 => 'main',
),
'parent' => NULL,
),
'main' => array(
'type' => 'column',
'width' => 100,
'width_type' => '%',
'children' => array(
0 => 1,
1 => 'main-row',
),
'parent' => 'canvas',
),
'main-row' => array(
'type' => 'row',
'contains' => 'region',
'children' => array(
0 => 'center',
),
'parent' => 'main',
),
'center' => array(
'type' => 'region',
'title' => 'Centreret',
'width' => 100,
'width_type' => '%',
'parent' => 'main-row',
),
1 => array(
'type' => 'row',
'contains' => 'region',
'children' => array(
0 => 'venstre',
1 => 'h__jre',
),
'parent' => 'main',
'class' => 'Top',
),
'venstre' => array(
'type' => 'region',
'title' => 'Venstre',
'width' => '75.03062257016563',
'width_type' => '%',
'parent' => '1',
'class' => '',
),
'h__jre' => array(
'type' => 'region',
'title' => 'Højre',
'width' => '24.969377429834374',
'width_type' => '%',
'parent' => '1',
'class' => '',
),
),
);
$export['node_edit'] = $layout;
return $export;
}