-
Notifications
You must be signed in to change notification settings - Fork 2
/
cambridge_questions_and_answers.features.field_base.inc
76 lines (71 loc) · 1.67 KB
/
cambridge_questions_and_answers.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
<?php
/**
* @file
* cambridge_questions_and_answers.features.field_base.inc
*/
/**
* Implements hook_field_default_field_bases().
*/
function cambridge_questions_and_answers_field_default_field_bases() {
$field_bases = array();
// Exported field_base: 'field_answer'
$field_bases['field_answer'] = array(
'active' => 1,
'cardinality' => 1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_answer',
'indexes' => array(
'format' => array(
0 => 'format',
),
),
'locked' => 0,
'module' => 'text',
'settings' => array(),
'translatable' => 0,
'type' => 'text_long',
);
// Exported field_base: 'field_question'
$field_bases['field_question'] = array(
'active' => 1,
'cardinality' => 1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_question',
'indexes' => array(
'format' => array(
0 => 'format',
),
),
'locked' => 0,
'module' => 'text',
'settings' => array(
'max_length' => 500,
),
'translatable' => 0,
'type' => 'text',
);
// Exported field_base: 'field_questions_and_answers'
$field_bases['field_questions_and_answers'] = array(
'active' => 1,
'cardinality' => -1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_questions_and_answers',
'indexes' => array(
'revision_id' => array(
0 => 'revision_id',
),
),
'locked' => 0,
'module' => 'field_collection',
'settings' => array(
'hide_blank_items' => 1,
'path' => '',
),
'translatable' => 0,
'type' => 'field_collection',
);
return $field_bases;
}