-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgnl_schema.features.taxonomy.inc
93 lines (92 loc) · 2.35 KB
/
gnl_schema.features.taxonomy.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
<?php
/**
* @file
* gnl_schema.features.taxonomy.inc
*/
/**
* Implements hook_taxonomy_default_vocabularies().
*/
function gnl_schema_taxonomy_default_vocabularies() {
return array(
'client_projects' => array(
'name' => 'Client projects',
'machine_name' => 'client_projects',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'csw_detroit_location' => array(
'name' => 'CSW-Detroit Location',
'machine_name' => 'csw_detroit_location',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'csw_detroit_population' => array(
'name' => 'CSW-Detroit Population',
'machine_name' => 'csw_detroit_population',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'csw_detroit_services' => array(
'name' => 'CSW-Detroit Services',
'machine_name' => 'csw_detroit_services',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'csw_detroit_type' => array(
'name' => 'CSW-Detroit Type',
'machine_name' => 'csw_detroit_type',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'grant_tags' => array(
'name' => 'Grant tags',
'machine_name' => 'grant_tags',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'grant_types' => array(
'name' => 'NTEE Grant types',
'machine_name' => 'grant_types',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'ntee' => array(
'name' => 'NTEE (nonprofit type)',
'machine_name' => 'ntee',
'description' => 'National Taxonomy for Exempt Entities',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'org_tags' => array(
'name' => 'Organization tags',
'machine_name' => 'org_tags',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'regions' => array(
'name' => 'Regions',
'machine_name' => 'regions',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
);
}