This repository has been archived by the owner on May 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstanford_conference.field_group.inc
79 lines (75 loc) · 2.3 KB
/
stanford_conference.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
<?php
/**
* @file
* stanford_conference.field_group.inc
*/
/**
* Implements hook_field_group_info().
*/
function stanford_conference_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_descriptors|node|conference_overview|default';
$field_group->group_name = 'group_descriptors';
$field_group->entity_type = 'node';
$field_group->bundle = 'conference_overview';
$field_group->mode = 'default';
$field_group->parent_name = '';
$field_group->data = array(
'label' => 'Descriptors',
'weight' => '0',
'children' => array(
0 => 'field_stanford_event_location',
1 => 'field_s_date',
),
'format_type' => 'div',
'format_settings' => array(
'label' => 'Descriptors',
'instance_settings' => array(
'id' => '',
'classes' => 'descriptor',
'description' => '',
'show_label' => '0',
'label_element' => 'h3',
'effect' => 'none',
'speed' => 'fast',
),
'formatter' => 'open',
),
);
$export['group_descriptors|node|conference_overview|default'] = $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_rsvp_button|node|conference_overview|default';
$field_group->group_name = 'group_rsvp_button';
$field_group->entity_type = 'node';
$field_group->bundle = 'conference_overview';
$field_group->mode = 'default';
$field_group->parent_name = '';
$field_group->data = array(
'label' => 'RSVP Button',
'weight' => '3',
'children' => array(
0 => 'field_s_rsvp',
),
'format_type' => 'div',
'format_settings' => array(
'label' => 'RSVP Button',
'instance_settings' => array(
'id' => '',
'classes' => '',
'description' => '',
'show_label' => '0',
'label_element' => 'h3',
'effect' => 'none',
'speed' => 'fast',
),
'formatter' => 'open',
),
);
$export['group_rsvp_button|node|conference_overview|default'] = $field_group;
return $export;
}