-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoi_display.install
executable file
·399 lines (349 loc) · 9.34 KB
/
doi_display.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<?php
// Install / remove the doi content type during module installation / removal
/**
* Implements hook_node_info().
*
*/
function doi_display_node_info() {
return array(
'doi_display' => array(
'name' => t('DOI'),
'base' => 'node_content',
'description' => t(''),
'title_label' => t('Digital Object Identifier'),
'locked' => TRUE,
),
);
}
/**
* Implements hook_node_type_insert().
*
*/
function doi_display_node_type_insert($content_type) {
if ($content_type->type == 'doi_display') {
// Create all the fields we are adding to our content type.
foreach (_doi_display_installed_fields() as $field) {
field_create_field($field);
}
// Create all the instances for our fields.
foreach (_doi_display_installed_instances() as $instance) {
$instance['entity_type'] = 'node';
$instance['bundle'] = 'doi_display';
field_create_instance($instance);
}
// Create the group
$group_name = 'group_no_edit';
$entity_type = 'node';
$bundle = 'doi_display';
$mode = 'form';
$group = (object) array(
'identifier' => $group_name .'|'. $entity_type .'|'. $bundle .'|'. $mode,
'group_name' => $group_name,
'entity_type' => $entity_type,
'bundle' => $bundle,
'mode' => $mode,
'label' => 'Don\'t edit these fields, they are populated by DataCite. Make changes there.',
'weight' => '1',
'children' => array(
'field_doi_identifier',
'field_doi_creator',
'field_doi_title',
'field_doi_publisher',
'field_doi_description',
'field_doi_contributors',
'field_doi_dates',
'field_doi_rights',
'field_doi_full_citation',
'field_doi_location',
),
'format_type' => 'fieldset',
'format_settings' => array(
'formatter' => 'collapsible',
'instance_settings' => array(
'description' => '',
'classes' => '',
'required_fields' => 1,
),
),
);
field_group_group_save($group);
node_types_rebuild();
}
}
/**
* Implements hook_form().
*
*/
function doi_display_form($node, $form_state) {
return node_content_form($node, $form_state);
}
/**
* Implements hook_uninstall().
*/
function doi_display_uninstall() {
$ournewtype = 'doi_display';
$sql = 'SELECT nid FROM {node} n WHERE n.type = :type';
$result = db_query($sql, array(':type' => $ournewtype));
$nodeids = array();
foreach ($result as $row) {
$nodeids[] = $row->nid;
}
node_delete_multiple($nodeids);
node_type_delete($ournewtype);
// Delete the fields attached to the content type
foreach (_doi_display_installed_fields() as $field) {
field_delete_field($field['field_name']);
}
// DOES need to be run twice
field_purge_batch(1000);
field_purge_batch(1000);
}
/**
* Define the fields for our content type.
*
* This big array is factored into this function for readability.
*
* @return array
* An associative array specifying the fields we wish to add to our
* new node type.
*/
function _doi_display_installed_fields() {
return array(
'field_doi_reference' => array(
'field_name' => 'field_doi_reference',
'cardinality' => 1,
'type' => 'entityreference',
'settings' => array(
'target_type' => 'node',
'handler_settings' => array(
// 'target_bundles' => array('publication')
),
),
),
'field_first_use_paper' => array(
'field_name' => 'field_first_use_paper',
'cardinality' => 1,
'type' => 'text_long',
),
'field_doi_identifier' => array(
'field_name' => 'field_doi_identifier',
'cardinality' => 1,
'type' => 'text',
),
'field_doi_creator' => array(
'field_name' => 'field_doi_creator',
'cardinality' => 1,
'type' => 'text',
),
'field_doi_title' => array(
'field_name' => 'field_doi_title',
'cardinality' => 1,
'type' => 'text',
),
'field_doi_publisher' => array(
'field_name' => 'field_doi_publisher',
'cardinality' => 1,
'type' => 'text',
),
'field_doi_dates' => array(
'field_name' => 'field_doi_dates',
'cardinality' => 1,
'type' => 'text',
),
'field_doi_location' => array(
'field_name' => 'field_doi_location',
'cardinality' => 1,
'type' => 'text',
),
'field_doi_description' => array(
'field_name' => 'field_doi_description',
'cardinality' => 1,
'type' => 'text_long',
),
'field_doi_contributors' => array(
'field_name' => 'field_doi_contributors',
'cardinality' => 1,
'type' => 'text_long',
),
'field_doi_rights' => array(
'field_name' => 'field_doi_rights',
'cardinality' => 1,
'type' => 'text_long',
),
'field_doi_full_citation' => array(
'field_name' => 'field_doi_full_citation',
'cardinality' => 1,
'type' => 'text_long',
),
);
}
/**
* Define the field instances for our content type.
*
*/
function _doi_display_installed_instances() {
return array(
'field_doi_reference' => array(
'field_name' => 'field_doi_reference',
'label' => t('DOI Reference'),
'type' => 'text',
'widget' => array(
'type' => 'autocomplete',
),
'settings' => array(
'target_type' => 'node',
'handler_settings' => array(
// 'target_bundles' => array('publication')
),
),
),
'field_first_use_paper' => array(
'field_name' => 'field_first_use_paper',
'label' => t('First Use Paper'),
'type' => 'text_long',
'widget' => array(
'type' => 'text_textarea',
),
),
'field_doi_identifier' => array(
'field_name' => 'field_doi_identifier',
'label' => t('Identifier'),
'type' => 'text',
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_creator' => array(
'field_name' => 'field_doi_creator',
'label' => t('Creator'),
'type' => 'text',
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_title' => array(
'field_name' => 'field_doi_title',
'label' => t('Title'),
'type' => 'text',
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_publisher' => array(
'field_name' => 'field_doi_publisher',
'label' => t('Publisher'),
'type' => 'text',
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_dates' => array(
'field_name' => 'field_doi_dates',
'label' => t('Dates'),
'type' => 'text',
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_location' => array(
'field_name' => 'field_doi_location',
'label' => t('Location'),
'type' => 'text',
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_description' => array(
'field_name' => 'field_doi_description',
'label' => t('Description'),
'type' => 'text_long',
'widget' => array(
'type' => 'text_textarea',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_contributors' => array(
'field_name' => 'field_doi_contributors',
'label' => t('Contributors'),
'type' => 'text_long',
'widget' => array(
'type' => 'text_textarea',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_rights' => array(
'field_name' => 'field_doi_rights',
'label' => t('Rights'),
'type' => 'text_long',
'widget' => array(
'type' => 'text_textarea',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
'field_doi_full_citation' => array(
'field_name' => 'field_doi_full_citation',
'label' => t('Full Citation'),
'type' => 'text_long',
'widget' => array(
'type' => 'text_textarea',
),
'display' => array(
'default' => array(
'label' => 'hidden',
'type' => 'hidden',
),
),
),
);
}