Initial commit
This commit is contained in:
78
app/resources/config/prefrences.example.json
Normal file
78
app/resources/config/prefrences.example.json
Normal file
@ -0,0 +1,78 @@
|
||||
{
|
||||
"gender": {
|
||||
"pretty": "Gender",
|
||||
"type": "select",
|
||||
"default": "unspecified",
|
||||
"options": ["male", "female", "other", "unspecified"],
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png"
|
||||
},
|
||||
"email": {
|
||||
"pretty": "IDK what this is for",
|
||||
"type": "checkbox",
|
||||
"default": "true",
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png",
|
||||
"options": null
|
||||
},
|
||||
"newsletter": {
|
||||
"pretty": "Receive our Newsletter?",
|
||||
"type": "checkbox",
|
||||
"default": "true",
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png",
|
||||
"options": null
|
||||
},
|
||||
"avatar": {
|
||||
"pretty": "Avatar",
|
||||
"type": "file",
|
||||
"default": "images/defaultAvatar.png",
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png",
|
||||
"options": null
|
||||
},
|
||||
"timezone": {
|
||||
"pretty": "Timezone",
|
||||
"type": "timezone",
|
||||
"default": "America/New_York",
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png",
|
||||
"options": null
|
||||
},
|
||||
"dateFormat": {
|
||||
"pretty": "Date Format",
|
||||
"type": "select",
|
||||
"default": "F j, Y",
|
||||
"options": {
|
||||
"1-8-1991": "n-j-Y",
|
||||
"8-1-1991": "j-n-Y",
|
||||
"01-08-1991": "m-d-Y",
|
||||
"08-01-1991": "d-m-Y",
|
||||
"January 8, 1991": "F-j-Y",
|
||||
"8 January, 1991": "j-F-Y",
|
||||
"January 08, 1991": "F-d-Y",
|
||||
"08 January, 1991": "d-F-Y",
|
||||
"Jan 8, 1991": "M-j-Y",
|
||||
"8 Jan 1991": "j-M-Y",
|
||||
"Jan 08, 1991": "M-d-Y",
|
||||
"08 Jan 1991": "d-M-Y"
|
||||
},
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png"
|
||||
},
|
||||
"timeFormat": {
|
||||
"pretty": "Time Format",
|
||||
"type": "select",
|
||||
"default": "g:i:s A",
|
||||
"options": {
|
||||
"3:33:33 AM": "g:i:s A",
|
||||
"03:33:33 AM": "h:i:s A",
|
||||
"3:33:33 am": "g:i:s a",
|
||||
"03:33:33 am": "h:i:s a",
|
||||
"3:33:33 (military)": "G:i:s",
|
||||
"03:33:33 (military)": "H:i:s"
|
||||
},
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png"
|
||||
},
|
||||
"pageLimit": {
|
||||
"pretty": "Items Displayed Per Page",
|
||||
"type": "select",
|
||||
"default": "10",
|
||||
"options": ["10", "15", "20", "25", "50"],
|
||||
"avatar": "/var/www/apache/images/defaultAvatar.png"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user