-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipermail_import.install
216 lines (192 loc) · 5.86 KB
/
pipermail_import.install
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
// $Id$
/**
* @file
* Install file for the Pipermail module.
*/
/**
* Implements hook_install().
*/
function pipermail_import_install() {
node_types_rebuild();
$types = node_type_get_types();
node_add_body_field($types['pipermail']);
// Load the instance definition for our content type's body
$body_instance = field_info_instance('node', 'body', 'pipermail');
// Configure the body field
$body_instance['type'] = 'text_summary_or_trimmed';
// Save our changes to the body field instance.
field_update_instance($body_instance);
// Create all the fields we are adding to our content type.
foreach (_pipermail_import_installed_fields() as $field) {
field_create_field($field);
}
// Creates all the instances for our fields.
foreach (_pipermail_import_installed_instances() as $instance) {
$instance['entity_type'] = 'node';
$instance['bundle'] = 'pipermail';
field_create_instance($instance);
}
}
/**
* Returns a structured array defining the fields created by this content type.
*/
function _pipermail_import_installed_fields() {
$t = get_t();
return array(
'pipermail_from' => array(
'field_name' => 'pipermail_from',
'label' => $t('Sender'),
'type' => 'text',
),
'pipermail_date' => array(
'field_name' => 'pipermail_date',
'label' => $t('Date'),
'type' => 'text',
),
'pipermail_subject' => array(
'field_name' => 'pipermail_subject',
'label' => $t('Sender'),
'type' => 'text',
),
'pipermail_in_reply_to' => array(
'field_name' => 'pipermail_in_reply_to',
'label' => $t('In Reply To'),
'type' => 'text',
),
'pipermail_references' => array(
'field_name' => 'pipermail_references',
'label' => $t('References'),
'type' => 'text',
),
'pipermail_message_id' => array(
'field_name' => 'pipermail_message_id',
'label' => $t('Message ID'),
'type' => 'text',
),
);
}
/**
* Returns a structured array defining the field instances associated with this content type.
*/
function _pipermail_import_installed_instances() {
$t = get_t();
return array(
'pipermail_from' => array(
'field_name' => 'pipermail_from',
'type' => 'text',
'label' => $t('Sender'),
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'example_node_list' => array(
'label' => $t('From'),
'type' => 'text',
),
),
),
'pipermail_date' => array(
'field_name' => 'pipermail_date',
'type' => 'text',
'label' => $t('Date'),
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'example_node_list' => array(
'label' => $t('Date'),
'type' => 'text',
),
),
),
'pipermail_subject' => array(
'field_name' => 'pipermail_subject',
'type' => 'text',
'label' => $t('Subject'),
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'example_node_list' => array(
'label' => $t('Subject'),
'type' => 'text',
),
),
),
'pipermail_in_reply_to' => array(
'field_name' => 'pipermail_in_reply_to',
'type' => 'text',
'label' => $t('In Reply To'),
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'example_node_list' => array(
'label' => $t('In Reply To'),
'type' => 'text',
),
),
),
'pipermail_references' => array(
'field_name' => 'pipermail_references',
'type' => 'text',
'label' => $t('References'),
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'example_node_list' => array(
'label' => $t('References'),
'type' => 'text',
),
),
),
'pipermail_message_id' => array(
'field_name' => 'pipermail_message_id',
'type' => 'text',
'label' => $t('Message ID'),
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'example_node_list' => array(
'label' => $t('Message ID'),
'type' => 'text',
),
),
),
);
}
/**
* Implements hook_uninstall().
*/
function pipermail_import_uninstall() {
// Remove all imported Pipermail content
// TODO: offer choice.
$sql = 'SELECT nid FROM {node} n WHERE n.type = :type';
$result = db_query($sql, array(':type' => 'pipermail'));
$nids = array();
foreach ($result as $row) {
$nids[] = $row->nid;
}
// Delete all the nodes at once
node_delete_multiple($nids);
// Loop over each of the fields defined by this module and delete
// all instances of the field, their data, and the field itself.
foreach (array_keys(_pipermail_import_installed_fields()) as $field) {
field_delete_field($field);
}
// Loop over any remaining field instances attached to the pipermail
// content type (such as the body field) and delete them individually.
$instances = field_info_instances('node', 'pipermail');
foreach ($instances as $instance_name => $instance) {
field_delete_instance($instance);
}
// Delete our content type
node_type_delete('pipermail');
// Purge all field infromation
field_purge_batch(1000);
// Remove module-specific variables
update_sql("DELETE FROM {variable} WHERE name LIKE 'pipermail_import_%'");
}