-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
84 lines (84 loc) · 1.82 KB
/
plugin.json
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "Simple Contact Form",
"description": "Simple Contact Form",
"license": "MIT",
"author": "Valgard Trontheim <https://trontheim.com/>",
"version": "1.1.2",
"scope": "site",
"minimumPubliiVersion": "0.46.0",
"useCustomCssForOptions": false,
"config": [
{
"name": "script",
"label": "URL to mailing script",
"note": "",
"group": "Backend",
"type": "text",
"default": "https://example.com/mail.php"
},
{
"name": "menu",
"label": "Menu",
"note": "",
"group": "Menu",
"type": "text",
"default": "footerMenu"
},
{
"name": "menuPosition",
"label": "Menu position",
"note": "",
"group": "Menu",
"type": "text",
"default": "1"
},
{
"name": "contactFeaturedImage",
"label": "Featured image",
"note": "",
"group": "Content",
"type": "upload",
"default": null
},
{
"name": "contactContent",
"label": "Content",
"note": "",
"group": "Content",
"type": "wysiwyg",
"default": null
},
{
"name": "recaptchaEnabled",
"label": "Enabled",
"note": "",
"group": "Google reCAPTCHA v3",
"type": "checkbox",
"default": false
},
{
"name": "recaptchaSiteKey",
"label": "Site key",
"note": "",
"group": "Google reCAPTCHA v3",
"type": "text",
"default": ""
},
{
"name": "recaptchaParameterName",
"label": "Parameter name",
"note": "",
"group": "Google reCAPTCHA v3",
"type": "text",
"default": "g-recaptcha-response"
},
{
"name": "recaptchaActionName",
"label": "Action name",
"note": "",
"group": "Google reCAPTCHA v3",
"type": "text",
"default": "CONTACT_FORM"
}
]
}