-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini
67 lines (53 loc) · 2.72 KB
/
config.ini
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
[config]
; DEFAULT OPTIONS
; ----
; The following are default theme options to include as a best practice
display_featured_item.type = "checkbox"
display_featured_item.options.label = "Display Featured Item"
display_featured_item.options.description = "Check this box if you wish to show the featured item on the homepage."
display_featured_item.options.value = "1"
display_featured_collection.type = "checkbox"
display_featured_collection.options.label = "Display Featured Collection"
display_featured_collection.options.description = "Check this box if you wish to show the featured collection on the homepage."
display_featured_collection.options.value = "1"
display_featured_exhibit.type = "checkbox"
display_featured_exhibit.options.label = "Display Featured Exhibit"
display_featured_exhibit.options.description = "Check this box if you wish to show the featured exhibit on the homepage."
display_featured_exhibit.options.value = "1"
; MORE OPTIONS
; ----
; Below are samples of the different types of Configuration options and input types
; Remove the semi-colon before the indentifier (e.g. "; sample_text.options" -> "sample_text.options")
; Sample Checkbox
; sample_checkbox.type = "checkbox"
; sample_checkbox.options.label = "Sample Checkbox"
; sample_checkbox.options.description = "This is a sample checkbox, for both toggles and selectors."
; sample_checkbox.options.value = "1"
; Sample Text Input
; sample_text.type = "text"
; sample_text.options.label = "Sample Text"
; sample_text.options.description = "This is a sample input text field, usually for shorter lines of text."
; sample_text.options.maxlength = "60"
; Homepage Intro text
homepage_intro.type = "textarea"
homepage_intro.options.label = "Homepage Intro"
homepage_intro.options.description = "Intro text for the home page"
homepage_intro.options.rows = "10"
homepage_intro.options.attribs.class = "html-input"
; Sample Select List
; sample_select.type = "select"
; sample_select.options.label = "Sample Select List"
; sample_select.options.description = "This is a sample select list."
; sample_select.options.multiOptions.option01 = "Option #1"
; sample_select.options.multiOptions.option02 = "Option #2"
; sample_select.options.multiOptions.option03 = "Option #3"
; sample_select.options.value = "option01"
; Sample File
; sample_file.type = "file"
; sample_file.options.label = "Sample File Picker"
; sample_file.options.description = "This is a sample file picker for adding and uploading images and other files."
; sample_file.options.validators.count.validator = "Count"
; sample_file.options.validators.count.options.max = "1"
[plugins]
; Exclude fields from plugins, if they wish.
exclude_fields = "display_featured_item, display_featured_collection, display_featured_exhibit"