-
Notifications
You must be signed in to change notification settings - Fork 4
/
stanford_page.features.field_base.inc
58 lines (54 loc) · 1.22 KB
/
stanford_page.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
<?php
/**
* @file
* stanford_page.features.field_base.inc
*/
/**
* Implements hook_field_default_field_bases().
*/
function stanford_page_field_default_field_bases() {
$field_bases = array();
// Exported field_base: 'field_s_page_file'
$field_bases['field_s_page_file'] = array(
'active' => 1,
'cardinality' => -1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_s_page_file',
'indexes' => array(
'fid' => array(
0 => 'fid',
),
),
'locked' => 0,
'module' => 'file',
'settings' => array(
'display_field' => 1,
'uri_scheme' => 'public',
),
'translatable' => 0,
'type' => 'file',
);
// Exported field_base: 'field_s_page_image_insert'
$field_bases['field_s_page_image_insert'] = array(
'active' => 1,
'cardinality' => -1,
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_s_page_image_insert',
'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;
}