-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
29 lines (29 loc) · 1.18 KB
/
plugin.xml
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
<?xml version="1.0" encoding="utf-8"?>
<e107Plugin name="TwoFactorAuth" lan="LAN_PLUGIN_2FA_NAME" version="2.0.0" date="2024-08-13" compatibility="2.3.1" installRequired="true" >
<author name="e107 Inc." url="https://www.e107.org" />
<summary>Plugin that adds 2FA functionality to e107</summary>
<description lan="LAN_PLUGIN_2FA_DIZ">Plugin that adds Two-Factor Authenthication (2FA) to e107</description>
<category>users</category>
<keywords>
<word>two-factor authentication</word>
<word>2fa</word>
<word>TOTP</word>
<word>security</word>
</keywords>
<adminLinks>
<link url='admin_config.php' description='Configure TwoFactorAuth' icon='images/tfa_32.png' iconSmall='images/tfa_16.png' icon128="images/tfa_128.png" primary='true'>LAN_CONFIGURE</link>
</adminLinks>
<pluginPrefs>
<pref name="tfa_active">1</pref>
<pref name="tfa_recoverycodes">1</pref>
<pref name="tfa_recoverycodesattempts">3</pref>
<pref name="tfa_debug">0</pref>
<pref name="tfa_label"></pref>
</pluginPrefs>
<dependencies>
<php name='core' min_version='8.2.0' />
</dependencies>
<extendedFields>
<field name="recovery_codes" type='EUF_TEXTAREA' default='' active="true" />
</extendedFields>
</e107Plugin>