-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathelements.php
52 lines (52 loc) · 1.27 KB
/
elements.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
<?php
// CUL LDPD profile MODS, adapted to flat representation in Omeka
$elements = array(
array(
'name'=>'Key Date',
'description'=>'Key date is creation date in normalized format, or the date that can be considered the most accurate date of representation. Use YYYY-MM-DD format.',
//'data_type'=> 'Date',
'data_type'=> 'Date Range',
),
array(
'name' => 'Type of Date',
'description' => 'Enter the type of date represented by the key date.'
),
array(
'name' => 'Publication Place',
'data_type' => 'Tiny Text',
),
array(
'name' => 'Publication Date',
'data_type' => 'Tiny Text',
),
array(
'name' => 'Place of Origin',
'data_type' => 'Tiny Text',
),
array(
'name' => 'Form/Genre',
),
array(
'name' => 'Physical Description',
),
array(
'name' => 'Physical Location',
'data_type' => 'Tiny Text',
),
array(
'name' => 'Repository Name',
),
array(
'name' => 'Shelf Location',
),
array(
'name' => 'Notes',
),
array(
'name' => 'Language of Cataloging',
),
array(
'name' => 'Digital Origin',
'description' => 'How the item came to be digitized. Options are born digital, reformatted digital, digitized microfilm, or digitized other analog',
)
);