forked from pe7er/hCaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhcaptcha.xml
More file actions
76 lines (69 loc) · 2.04 KB
/
hcaptcha.xml
File metadata and controls
76 lines (69 loc) · 2.04 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
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
<?xml version="1.0" encoding="utf-8"?>
<extension version="3.9" type="plugin" group="captcha" method="upgrade">
<name>plg_captcha_hcaptcha</name>
<version>1.0.0</version>
<creationDate>April 2020</creationDate>
<author>data2site</author>
<authorEmail>support@data2site.com</authorEmail>
<authorUrl>https://data2site.com</authorUrl>
<copyright>Copyright (C) 2020 by data2site. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later</license>
<description>PLG_CAPTCHA_HCAPTCHA_XML_DESCRIPTION</description>
<files>
<filename plugin="hcaptcha">hcaptcha.php</filename>
<folder>language</folder>
</files>
<config>
<fields name="params">
<fieldset name="basic">
<field
name="publicKey"
type="text"
label="PLG_HCAPTCHA_PUBLIC_KEY"
description="PLG_HCAPTCHA_PUBLIC_KEY_DESC"
default=""
required="true"
filter="string"
size="100"
class="input-xxlarge"
/>
<field
name="privateKey"
type="text"
label="PLG_HCAPTCHA_PRIVATE_KEY"
description="PLG_HCAPTCHA_PRIVATE_KEY_DESC"
default=""
required="true"
filter="string"
size="100"
class="input-xxlarge"
/>
<field
name="theme"
type="list"
label="PLG_HCAPTCHA_THEME"
description="PLG_HCAPTCHA_THEME_DESC"
default="light"
filter="string"
>
<option value="light">PLG_HCAPTCHA_THEME_LIGHT</option>
<option value="dark">PLG_HCAPTCHA_THEME_DARK</option>
</field>
<field
name="size"
type="list"
label="PLG_HCAPTCHA_SIZE"
description="PLG_HCAPTCHA_SIZE_DESC"
default="normal"
filter="string"
>
<option value="normal">PLG_HCAPTCHA_SIZE_NORMAL</option>
<option value="compact">PLG_HCAPTCHA_SIZE_COMPACT</option>
</field>
</fieldset>
</fields>
</config>
<updateservers>
<server type="extension" priority="1" name="plg_captcha_hcaptcha">https://data2site.com/index.php?option=com_rdsubs&view=updater&format=xml&element=plg_captcha_hcaptcha</server>
</updateservers>
</extension>