-
Notifications
You must be signed in to change notification settings - Fork 0
/
rbv_project.features.field_base.inc
97 lines (93 loc) · 2.12 KB
/
rbv_project.features.field_base.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
<?php
/**
* @file
* rbv_project.features.field_base.inc
*/
/**
* Implements hook_field_default_field_bases().
*/
function rbv_project_field_default_field_bases() {
$field_bases = array();
// Exported field_base: 'field_com_scope'
$field_bases['field_com_scope'] = array(
'active' => 1,
'cardinality' => 1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_com_scope',
'foreign keys' => array(
'tid' => array(
'columns' => array(
'tid' => 'tid',
),
'table' => 'taxonomy_term_data',
),
),
'indexes' => array(
'tid' => array(
0 => 'tid',
),
),
'locked' => 0,
'module' => 'taxonomy',
'settings' => array(
'allowed_values' => array(
0 => array(
'vocabulary' => 'project_scopes',
'parent' => 0,
),
),
),
'translatable' => 0,
'type' => 'taxonomy_term_reference',
);
// Exported field_base: 'og_group_ref'
$field_bases['og_group_ref'] = array(
'active' => 1,
'cardinality' => -1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'og_group_ref',
'foreign keys' => array(
'node' => array(
'columns' => array(
'target_id' => 'nid',
),
'table' => 'node',
),
),
'indexes' => array(
'target_id' => array(
0 => 'target_id',
),
),
'locked' => 0,
'module' => 'entityreference',
'settings' => array(
'handler' => 'og',
'handler_settings' => array(
'behaviors' => array(
'og_behavior' => array(
'status' => TRUE,
),
'views-select-list' => array(
'status' => 0,
),
),
'membership_type' => 'rbv_membership_default',
'sort' => array(
'type' => 'none',
),
'target_bundles' => array(
'org' => 'org',
),
),
'handler_submit' => 'Change handler',
'target_type' => 'node',
),
'target_type' => 'node',
'translatable' => 0,
'type' => 'entityreference',
);
return $field_bases;
}