-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelements.php
More file actions
47 lines (41 loc) · 1.79 KB
/
elements.php
File metadata and controls
47 lines (41 loc) · 1.79 KB
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
<?php
$elementSetMetadata = array(
'name' => 'Quality Control Metadata',
'description' => "CAVPP custom QC metadata element set, based on PBCore (a metadata standard for audiovisual media developed by the public broadcasting community. See http://www.pbcore.org/documentation/)",
'record_type' => 'Item',
);
$elements = array(
// CAVPP Quality Control Notes
array(
'label' => 'CAVPP Quality Control Notes',
'name' => 'CAVPP Quality Control Notes',
/* 'description' => 'CAVPP Quality Control Notes.', */
),
// Partner Quality Control Notes
array(
'label' => 'Partner Quality Control Notes',
'name' => 'Partner Quality Control Notes',
/* 'description' => 'Partner Quality Control Notes.', */
),
//Vendor Quality Control Notes - Pres. master
array(
'label' => 'Vendor Quality Control Notes - Preservation Master',
'name' => 'Vendor Quality Control Notes - Preservation Master',
/* 'description' => 'Vendor Quality Control.', */
'data_type' => 'Tiny Text',
),
//Vendor Quality Control Notes - Copy/Mezzanine master
array(
'label' => 'Vendor Quality Control Notes - Copy/Mezzanine Master',
'name' => 'Vendor Quality Control Notes - Copy/Mezzanine Master',
/* 'description' => 'Vendor Quality Control.', */
'data_type' => 'Tiny Text',
),
//Vendor Quality Control Notes - Access copy
array(
'label' => 'Vendor Quality Control Notes - Access Copy',
'name' => 'Vendor Quality Control Notes - Access Copy',
/* 'description' => 'Vendor Quality Control.', */
'data_type' => 'Tiny Text',
),
);