-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin-info.xml
More file actions
22 lines (22 loc) · 1.02 KB
/
plugin-info.xml
File metadata and controls
22 lines (22 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" standalone="yes" ?>
<plugin id="Arantor:reCAPTCHA">
<name>reCAPTCHA</name>
<author>Arantor</author>
<description>Adds the ability to use the reCAPTCHA widget for verification that users are not robots.</description>
<version>1.0</version>
<settings>
<setting name="recaptcha_theme" default="clean" />
<setting name="recaptcha_public_key" default="" />
<setting name="recaptcha_private_key" default="" />
</settings>
<hooks>
<function point="settings_spam" function="reCaptchaAdmin" filename="$plugindir/reCaptcha-Admin" />
<function point="verification_setup" function="setup_recaptcha" filename="$plugindir/reCaptcha-Main" />
<function point="verification_test" function="validate_recaptcha" /><!-- No file needed; reCaptcha-Main is the right file. -->
<function point="verification_display" function="template_recaptcha" />
</hooks>
<readmes>
<readme lang="english">$plugindir/readme.english.txt</readme>
</readmes>
<acp-url>action=admin;area=securitysettings;sa=spam#recaptcha</acp-url>
</plugin>