forked from ding2/ding_library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathding_library.field_group.inc
133 lines (127 loc) · 4.23 KB
/
ding_library.field_group.inc
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
/**
* @file
* ding_library.field_group.inc
*/
/**
* Implements hook_field_group_info().
*/
function ding_library_field_group_info() {
$export = array();
$field_group = new stdClass();
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
$field_group->api_version = 1;
$field_group->identifier = 'group_ding_library_attachments|node|ding_library|form';
$field_group->group_name = 'group_ding_library_attachments';
$field_group->entity_type = 'node';
$field_group->bundle = 'ding_library';
$field_group->mode = 'form';
$field_group->parent_name = '';
$field_group->data = array(
'label' => 'Attachments',
'weight' => '5',
'children' => array(
0 => 'field_ding_library_geocode',
1 => 'field_ding_library_links',
2 => 'field_ding_library_opening_hours',
),
'format_type' => 'fieldset',
'format_settings' => array(
'label' => 'Attachments',
'instance_settings' => array(
'required_fields' => 1,
'classes' => '',
'description' => '',
),
'formatter' => 'collapsed',
),
);
$export['group_ding_library_attachments|node|ding_library|form'] = $field_group;
$field_group = new stdClass();
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
$field_group->api_version = 1;
$field_group->identifier = 'group_ding_library_contact|node|ding_library|form';
$field_group->group_name = 'group_ding_library_contact';
$field_group->entity_type = 'node';
$field_group->bundle = 'ding_library';
$field_group->mode = 'form';
$field_group->parent_name = '';
$field_group->data = array(
'label' => 'Contact',
'weight' => '4',
'children' => array(
0 => 'field_ding_library_addresse',
1 => 'field_ding_library_fax_number',
2 => 'field_ding_library_mail',
3 => 'field_ding_library_phone_number',
),
'format_type' => 'fieldset',
'format_settings' => array(
'label' => 'Contact',
'instance_settings' => array(
'required_fields' => 1,
'classes' => '',
'description' => '',
),
'formatter' => 'collapsed',
),
);
$export['group_ding_library_contact|node|ding_library|form'] = $field_group;
$field_group = new stdClass();
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
$field_group->api_version = 1;
$field_group->identifier = 'group_ding_library_content|node|ding_library|form';
$field_group->group_name = 'group_ding_library_content';
$field_group->entity_type = 'node';
$field_group->bundle = 'ding_library';
$field_group->mode = 'form';
$field_group->parent_name = '';
$field_group->data = array(
'label' => 'Content',
'weight' => '3',
'children' => array(
0 => 'field_ding_library_body',
1 => 'field_ding_library_lead',
),
'format_type' => 'fieldset',
'format_settings' => array(
'label' => 'Content',
'instance_settings' => array(
'required_fields' => 1,
'classes' => '',
'description' => '',
),
'formatter' => 'collapsed',
),
);
$export['group_ding_library_content|node|ding_library|form'] = $field_group;
$field_group = new stdClass();
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
$field_group->api_version = 1;
$field_group->identifier = 'group_ding_library_images|node|ding_library|form';
$field_group->group_name = 'group_ding_library_images';
$field_group->entity_type = 'node';
$field_group->bundle = 'ding_library';
$field_group->mode = 'form';
$field_group->parent_name = '';
$field_group->data = array(
'label' => 'Images',
'weight' => '2',
'children' => array(
0 => 'field_ding_library_list_image',
1 => 'field_ding_library_title_image',
),
'format_type' => 'fieldset',
'format_settings' => array(
'label' => 'Images',
'instance_settings' => array(
'required_fields' => 1,
'classes' => '',
'description' => '',
),
'formatter' => 'collapsed',
),
);
$export['group_ding_library_images|node|ding_library|form'] = $field_group;
return $export;
}