forked from jerieljan/Ethics-Poll
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfig.php
55 lines (46 loc) · 1.39 KB
/
config.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
<?php
$getPersonalInfo = true;
//Multidimensional Question Set - too lazy to XML-ize.
$questions[0] = array(
'type' => 'just',
'question' => 'Is this action just?',
'least' => 'Unjust',
'greatest' => 'Just'
);
$questions[1] = array(
'type' => 'fair',
'question' => 'Is this action fair?',
'least' => 'Unfair',
'greatest' => 'Fair'
);
$questions[2] = array(
'type' => 'traditional',
'question' => 'Is this action traditionally acceptable?',
'least' => 'Traditionally Unacceptable',
'greatest' => 'Traditionally Acceptable'
);
$questions[3] = array(
'type' => 'moral',
'question' => 'Is this action moral?',
'least' => 'Not Morally Right',
'greatest' => 'Morally Right'
);
$questions[4] = array(
'type' => 'promise',
'question' => 'Does the action violate an unspoken promise?',
'least' => 'Violates an Unspoken Promise',
'greatest' => 'Does Not Violate an Unspoken Promise'
);
$questions[5] = array(
'type' => 'cultural',
'question' => 'Is this action culturally acceptable?',
'least' => 'Unacceptable',
'greatest' => 'Acceptable'
);
$questions[6] = array(
'type' => 'contract',
'question' => 'Does the action violate an unwritten contract?',
'least' => 'Violates an Unwritten Contract',
'greatest' => 'Does Not Violate an Unwritten Contract'
);
?>