forked from kalamuna/hot_primary_tout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hot_primary_tout.features.field_base.inc
71 lines (67 loc) · 1.55 KB
/
hot_primary_tout.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
<?php
/**
* @file
* hot_primary_tout.features.field_base.inc
*/
/**
* Implements hook_field_default_field_bases().
*/
function hot_primary_tout_field_default_field_bases() {
$field_bases = array();
// Exported field_base: 'field_hot_primary_tout_caption'
$field_bases['field_hot_primary_tout_caption'] = array(
'active' => 1,
'cardinality' => 1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_hot_primary_tout_caption',
'foreign keys' => array(
'format' => array(
'columns' => array(
'format' => 'format',
),
'table' => 'filter_format',
),
),
'indexes' => array(
'format' => array(
0 => 'format',
),
),
'locked' => 0,
'module' => 'text',
'settings' => array(),
'translatable' => 0,
'type' => 'text_long',
);
// Exported field_base: 'field_hot_primary_tout_image'
$field_bases['field_hot_primary_tout_image'] = array(
'active' => 1,
'cardinality' => 1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_hot_primary_tout_image',
'foreign keys' => array(
'fid' => array(
'columns' => array(
'fid' => 'fid',
),
'table' => 'file_managed',
),
),
'indexes' => array(
'fid' => array(
0 => 'fid',
),
),
'locked' => 0,
'module' => 'image',
'settings' => array(
'default_image' => 0,
'uri_scheme' => 'public',
),
'translatable' => 0,
'type' => 'image',
);
return $field_bases;
}