-
Notifications
You must be signed in to change notification settings - Fork 0
/
snippet.php
executable file
·486 lines (463 loc) · 30.6 KB
/
snippet.php
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
// Register the metabox and fields.
add_action( 'cn_metabox', 'cn_register_custom_metabox_and_text_field' );
function cn_register_custom_metabox_and_text_field() {
// Award/component
$hm_component_atts = array(
'title' => 'HuBMAP Award/component', // Change this to a name which applies to your project.
'id' => 'hm_component', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'component', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_component', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'select', // This is the field type being added.
'options' => array(
'' => '',
'Demonstration Project - University of Illinois, Chicago' => 'Demonstration Project - University of Illinois, Chicago',
'Demonstration Project - Harvard School of Medicine' => 'Demonstration Project - Harvard School of Medicine',
"Demonstration Project - Children's Hospital of Philadelphia" => "Demonstration Project - Children's Hospital of Philadelphia",
"Demonstration Project - Lurie Children's" => "Demonstration Project - Lurie Children's",
'HIVE IEC - Carnegie Mellon University' => 'HIVE IEC - Carnegie Mellon University',
'HIVE MC - Indiana University Bloomington' => 'HIVE MC - Indiana University Bloomington',
'HIVE MC - New York Genome Center' => 'HIVE MC - New York Genome Center',
'HIVE TC - Carnegie Mellon University' => 'HIVE TC - Carnegie Mellon University',
'HIVE TC - Harvard Medical School' => 'HIVE TC - Harvard Medical School',
'HIVE TC - University of Florida' => 'HIVE TC - University of Florida',
'NIH - National Institutes of Health' => 'NIH - National Institutes of Health',
'RTI - Broad Institute' => 'RTI - Broad Institute',
'RTI - GEscd' => 'RTI - GEscd',
'RTI - Northwestern University' => 'RTI - Northwestern University',
'RTI - Stanford University' => 'RTI - Stanford University',
'TMC - BIDMC' => 'TMC - BIDMC',
'TMC - California Institute of Technology' => 'TMC - California Institute of Technology',
"TMC - Children's Hospital of Philadelphia" => "TMC - Children's Hospital of Philadelphia",
"TMC - Children's Hospital of Philadelphia Heart" => "TMC - Children's Hospital of Philadelphia Heart",
'TMC - Johns Hopkins University' => 'TMC - Johns Hopkins University',
'TMC - GE-Pitt' => 'TMC - GE-Pitt',
'TMC - Pacific Northwest National Laboratory' => 'TMC - Pacific Northwest National Laboratory',
'TMC - Stanford University' => 'TMC - Stanford University',
'TMC - Stanford University Bone Marrow' => 'TMC - Stanford University Bone Marrow',
'TMC - University of California San Diego Kidney' => 'TMC - University of California San Diego Kidney',
'TMC - University of California San Diego Female Reproduction' => 'TMC - University of California San Diego Female Reproduction',
'TMC - University of Connecticut/Scripps Research Institute' => 'TMC - University of Connecticut/Scripps Research Institute',
'TMC - University of Florida' => 'TMC - University of Florida',
'TMC - University of Pennsylvania' => 'TMC - University of Pennsylvania',
'TMC - University of Rochester Medical Center' => 'TMC - University of Rochester Medical Center',
'TMC - Vanderbilt University Kidney' => 'TMC - Vanderbilt University Kidney',
'TMC - Vanderbilt University Eye/Pancreas' => 'TMC - Vanderbilt University Eye/Pancreas',
'TMC - Washington University in St. Louis Kidney' => 'TMC - Washington University in St. Louis Kidney',
'TTD - California Institute of Technology' => 'TTD - California Institute of Technology',
'TTD - Columbia University/Pennsylvania State University' => 'TTD - Columbia University/Pennsylvania State University',
'TTD - Harvard University' => 'TTD - Harvard University',
'TTD - Pacific Northwest National Laboratory' => 'TTD - Pacific Northwest National Laboratory',
'TTD - Pacific Northwest National Laboratory/Northwestern University' => 'TTD - Pacific Northwest National Laboratory/Northwestern University',
'TTD - Purdue University' => 'TTD - Purdue University',
'TTD - Stanford University' => 'TTD - Stanford University',
'TTD - University of California San Diego/City of Hope' => 'TTD - University of California San Diego/City of Hope',
'TTD - Yale University' => 'TTD - Yale University',
'EPC' => 'EPC',
'Associate Member' => 'Associate Member'
),
'default' => '', // This is the default selected option. Leave blank for none.
),
),
);
$hm_other_component_atts = array(
'title' => 'Other Component', // Change this to a name which applies to your project.
'id' => 'hm_other_component', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'other component', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_other_component', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
// Organization
$hm_organization_atts = array(
'title' => 'Organization', // Change this to a name which applies to your project.
'id' => 'hm_organization', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'organization', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_organization', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'select', // This is the field type being added.
'options' => array(
'' => '',
'Beth Israel Deaconess Medical Center' => 'Beth Israel Deaconess Medical Center',
'Broad Institute' => 'Broad Institute',
'California Institute of Technology' => 'California Institute of Technology',
'Carnegie Mellon University' => 'Carnegie Mellon University',
"Children's Hospital of Boston" => "Children's Hospital of Boston",
"Children's Hospital of Philadelphia" => "Children's Hospital of Philadelphia",
'City of Hope National Medical Center' => 'City of Hope National Medical Center',
'Columbia University' => 'Columbia University',
'Department of Biomedical Informatics (DBMI)/Unversity of Pittsburgh(Pitt)' => 'Department of Biomedical Informatics (DBMI)/Unversity of Pittsburgh(Pitt)',
'GEscd' => 'GEscd',
'General Electric Global Research Center' => 'General Electric Global Research Center',
'Harvard Medical School' => 'Harvard Medical School',
'Harvard University' => 'Harvard University',
'Indiana University' => 'Indiana University',
'Knowinnovation Inc.' => 'Knowinnovation Inc.',
'Johns Hopkins University' => 'Johns Hopkins University',
"Lurie Children's Hospital" => "Lurie Children's Hospital",
'NCI' => 'NCI',
'NHGRI' => 'NHGRI',
'NHLBI' => 'NHLBI',
'NIA' => 'NIA',
'NIAID' => 'NIAID',
'NIAMS' => 'NIAMS',
'NIBIB' => 'NIBIB',
'NICHD' => 'NICHD',
'NIDA' => 'NIDA',
'NIDDK' => 'NIDDK',
'NIGMS' => 'NIGMS',
'NIMH' => 'NIMH',
'NINDS' => 'NINDS',
'New York Genome Center' => 'New York Genome Center',
'Northwestern University' => 'Northwestern University',
'OD' => 'OD',
'Pacific Northwest National Laboratory' => 'Pacific Northwest National Laboratory',
'Pennsylvania State University' => 'Pennsylvania State University',
'PSC (Pittsburgh Supercomputing Center)/CMU' => 'PSC (Pittsburgh Supercomputing Center)/CMU',
'Pacific Northwest National Laboratory' => 'Pacific Northwest National Laboratory',
'Purdue University' => 'Purdue University',
'Renaissance Computing Institute (RENCI), University of North Carolina, Chapel Hill' => 'Renaissance Computing Institute (RENCI), University of North Carolina, Chapel Hill',
'Scripps Research Institute' => 'Scripps Research Institute',
"Seattle Children's Hospital" => "Seattle Children's Hospital",
'Stanford University' => 'Stanford University',
'The Jackson Laboratory (JAX)' => 'The Jackson Laboratory (JAX)',
'The University of Texas at Austin/TACC' => 'The University of Texas at Austin/TACC',
'University of Alabama at Birmingham' => 'University of Alabama at Birmingham',
'University of California San Diego' => 'University of California San Diego',
'University of California Santa Cruz' => 'University of California Santa Cruz',
'University of California San Francisco' => 'University of California San Francisco',
'University of Connecticut' => 'University of Connecticut',
'University of Florida' => 'University of Florida',
'University of Iowa' => 'University of Iowa',
'University of Kentucky' => 'University of Kentucky',
'University of North Carolina' => 'University of North Carolina',
'University of Pennsylvania' => 'University of Pennsylvania',
'University of Pittsburgh' => 'University of Pittsburgh',
'University of Pittsburgh Medical Center' => 'University of Pittsburgh Medical Center',
'University of Rochester Medical Center' => 'University of Rochester Medical Center',
'University of South Dakota' => 'University of South Dakota',
'University of Washington' => 'University of Washington',
'University of Zurich' => 'University of Zurich',
'Vanderbilt University' => 'Vanderbilt University',
'Vanderbilt University Medical Center' => 'Vanderbilt University Medical Center',
'Washington University in St. Louis' => 'Washington University in St. Louis',
'Yale School of Medicine' => 'Yale School of Medicine',
'Yale University' => 'Yale University',
'Other' => 'Other'
),
'default' => '', // This is the default selected option. Leave blank for none.
),
),
);
$hm_other_organization_atts = array(
'title' => 'Other Organization', // Change this to a name which applies to your project.
'id' => 'hm_other_organization', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'other organization', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_other_organization', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
// Role
$hm_role_atts = array(
'title' => 'Role in HuBMAP', // Change this to a name which applies to your project.
'id' => 'hm_role', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'role', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_role', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'select', // This is the field type being added.
'options' => array(
'' => '',
'Administrative Assistant' => 'Administrative Assistant',
'Agreement Specialist' => 'Agreement Specialist',
'Chief Scientist' => 'Chief Scientist',
'Co-Investigator' => 'Co-Investigator',
'Complicance Officer' => 'Complicance Officer',
'Computer Scientist' => 'Computer Scientist',
'Data Analysis Core' => 'Data Analysis Core',
'Data Architect' => 'Data Architect',
'Data Curator' => 'Data Curator',
'Data Manager' => 'Data Manager',
'Data Scientist' => 'Data Scientist',
'Designer' => 'Designer',
'External Program Consultant' => 'External Program Consultant',
'Graduate Student' => 'Graduate Student',
'Image Scientist' => 'Image Scientist',
'Informatics' => 'Informatics',
'Lead Software Developer' => 'Lead Software Developer',
'ML Scientist' => 'ML Scientist',
'Meeting Facilitator' => 'Meeting Facilitator',
'Network Support' => 'Network Support',
'PI' => 'PI',
'PI (Contact)' => 'PI (Contact)',
'Pathology Assessment' => 'Pathology Assessment',
'Postdoctoral Fellow' => 'Postdoctoral Fellow',
'Program Coordinator' => 'Program Coordinator',
'Program Officer' => 'Program Officer',
'Program Manager' => 'Program Manager',
'Project Scientist' => 'Project Scientist',
'Researcher' => 'Researcher',
'Scientific Program Manager' => 'Scientific Program Manager',
'Software Developer' => 'Software Developer',
'Software Engineer' => 'Software Engineer',
'System Support' => 'System Support',
'Team Leader' => 'Team Leader',
'WG Member' => 'WG Member',
'Website Developer' => 'Website Developer',
'Other' => 'Other'
),
'default' => '', // This is the default selected option. Leave blank for none.
),
),
);
$hm_other_role_atts = array(
'title' => 'Other Role', // Change this to a name which applies to your project.
'id' => 'hm_other_role', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'other role', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_other_role', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_ar_atts = array(
'title' => 'Which HuBMAP resources will you need to access?', // Change this to a name which applies to your project.
'id' => 'hm_access_requests', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'access request', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_access_requests', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'checkboxgroup', // This is the field type being added.
'options' => array(
'HuBMAP Data Via Globus' => 'HuBMAP Data Via Globus',
'Collaboration Portal' => 'Collaboration Portal',
'protocols.io' => 'protocols.io',
'HuBMAP Google Drive Share' => 'HuBMAP Google Drive Share',
'HuBMAP GitHub Repository' => 'HuBMAP GitHub Repository',
'HuBMAP Slack Workspace' => 'HuBMAP Slack Workspace'
),
'default' => '', // This is the default selected option. Leave blank for none.
),
),
);
$hm_globus_identity_atts = array(
'title' => 'What is your Globus account identity?', // Change this to a name which applies to your project.
'id' => 'hm_globus_identity', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'globus identity', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_globus_identity', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_google_email_atts = array(
'title' => 'What email address is linked to your preferred Google account?', // Change this to a name which applies to your project.
'id' => 'hm_google_email', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'google email', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_google_email', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_github_username_atts = array(
'title' => 'What is your GitHub username?', // Change this to a name which applies to your project.
'id' => 'hm_github_username', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'github username', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_github_username', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_slack_username_atts = array(
'title' => 'What is your Slack username?', // Change this to a name which applies to your project.
'id' => 'hm_slack_username', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'slack username', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_slack_username', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_protocols_io_email_atts = array(
'title' => 'What is your protocols.io account email?', // Change this to a name which applies to your project.
'id' => 'hm_protocols_io_email', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'protocols.io email', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_protocols_io_email', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_website_atts = array(
'title' => 'Personal Website', // Change this to a name which applies to your project.
'id' => 'hm_website', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'Personal website', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_website', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_orcid_atts = array(
'title' => 'What is your ORCID ID?', // Change this to a name which applies to your project.
'id' => 'hm_orcid', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'ORCID ID', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_orcid', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_pm_atts = array(
'title' => 'Is there a project manager who should be copied on all communications to you?', // Change this to a name which applies to your project.
'id' => 'hm_pm', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'pm', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_pm', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'radio', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
'options' => array(
'1' => 'Yes',
'0' => 'No',
),
),
),
);
$hm_pm_name_atts = array(
'title' => 'Project Manager\'s name', // Change this to a name which applies to your project.
'id' => 'hm_pm_name', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'pm name', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_pm_name', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_pm_email_atts = array(
'title' => 'Project Manager\'s email', // Change this to a name which applies to your project.
'id' => 'hm_pm_email', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'pm email', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_pm_email', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
$hm_globus_parsed_email_atts = array(
'title' => 'What email address is linked to your Globus Login account?', // Change this to a name which applies to your project.
'id' => 'hm_globus_parsed_email', // Change this so it is unique to you project.
'context' => 'normal',
'priority' => 'core',
'fields' => array(
array(
'name' => 'globus email', // Change this field name to something which applies to you project.
'show_label' => TRUE, // Whether or not to display the 'name'. Changing it to false will suppress the name.
'id' => 'hm_globus_parsed_email', // Change this so it is unique to you project. Each field id MUST be unique.
'type' => 'text', // This is the field type being added.
'size' => 'regular', // This can be changed to one of the following: 'small', 'regular', 'large'
),
),
);
cnMetaboxAPI::add( $hm_component_atts );
cnMetaboxAPI::add( $hm_other_component_atts);
cnMetaboxAPI::add( $hm_organization_atts );
cnMetaboxAPI::add( $hm_other_organization_atts);
cnMetaboxAPI::add( $hm_role_atts );
cnMetaboxAPI::add( $hm_other_role_atts);
cnMetaboxAPI::add( $hm_ar_atts );
cnMetaboxAPI::add( $hm_globus_identity_atts);
cnMetaboxAPI::add( $hm_google_email_atts);
cnMetaboxAPI::add( $hm_github_username_atts);
cnMetaboxAPI::add( $hm_slack_username_atts);
cnMetaboxAPI::add( $hm_protocols_io_email_atts);
cnMetaboxAPI::add( $hm_website_atts );
cnMetaboxAPI::add( $hm_orcid_atts );
cnMetaboxAPI::add( $hm_pm_atts );
cnMetaboxAPI::add( $hm_pm_name_atts );
cnMetaboxAPI::add( $hm_pm_email_atts );
cnMetaboxAPI::add( $hm_globus_parsed_email_atts);
}