forked from coldfrontlabs/fserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fserver.features.inc
160 lines (156 loc) · 3.33 KB
/
fserver.features.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
/**
* @file
* fserver.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function fserver_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
}
/**
* Implements hook_views_api().
*/
function fserver_views_api($module = NULL, $api = NULL) {
return array("api" => "3.0");
}
/**
* Implements hook_eck_bundle_info().
*/
function fserver_eck_bundle_info() {
$items = array(
'project_distribution' => array(
'machine_name' => 'project_distribution',
'entity_type' => 'project',
'name' => 'distribution',
'label' => 'Distribution',
),
'project_module' => array(
'machine_name' => 'project_module',
'entity_type' => 'project',
'name' => 'module',
'label' => 'Module',
),
'project_theme' => array(
'machine_name' => 'project_theme',
'entity_type' => 'project',
'name' => 'theme',
'label' => 'Theme',
),
'release_release' => array(
'machine_name' => 'release_release',
'entity_type' => 'release',
'name' => 'release',
'label' => 'Release',
),
);
return $items;
}
/**
* Implements hook_eck_entity_type_info().
*/
function fserver_eck_entity_type_info() {
$items = array(
'project' => array(
'name' => 'project',
'label' => 'Project',
'properties' => array(
'title' => array(
'label' => 'Title',
'type' => 'text',
'behavior' => 'title',
),
'uuid' => array(
'label' => 'uuid',
'type' => 'uuid',
'behavior' => 'uuid',
),
'short_name' => array(
'label' => 'Name',
'type' => 'text',
'behavior' => '',
),
'recommended_major' => array(
'label' => 'Recommended Major',
'type' => 'positive_integer',
'behavior' => '',
),
'supported_majors' => array(
'label' => 'Supported Majors',
'type' => 'text',
'behavior' => '',
),
'link' => array(
'label' => 'Link',
'type' => 'text',
'behavior' => '',
),
'project_status' => array(
'label' => 'Project Status',
'type' => 'text',
'behavior' => '',
),
),
),
'release' => array(
'name' => 'release',
'label' => 'Release',
'properties' => array(
'version' => array(
'label' => 'Version',
'type' => 'text',
'behavior' => '',
),
'tag' => array(
'label' => 'Tag',
'type' => 'text',
'behavior' => '',
),
'version_major' => array(
'label' => 'Version Major',
'type' => 'integer',
'behavior' => '',
),
'version_patch' => array(
'label' => 'Version Patch',
'type' => 'integer',
'behavior' => '',
),
'version_extra' => array(
'label' => 'Version extra',
'type' => 'text',
'behavior' => '',
),
'date' => array(
'label' => 'Date',
'type' => 'positive_integer',
'behavior' => 'created',
),
'project_short_name' => array(
'label' => 'Project Short Name',
'type' => 'text',
'behavior' => '',
),
'api' => array(
'label' => 'API Version',
'type' => 'text',
'behavior' => '',
),
'name' => array(
'label' => 'name',
'type' => 'text',
'behavior' => '',
),
'uuid' => array(
'label' => 'uuid',
'type' => 'uuid',
'behavior' => 'uuid',
),
),
),
);
return $items;
}