-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
56 lines (43 loc) · 1.42 KB
/
plugin.xml
File metadata and controls
56 lines (43 loc) · 1.42 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.devblocks.com/schema/plugin.xsd">
<id>wgm.ldap</id>
<name>LDAP Integration</name>
<description>Authenticate worker and customer logins via LDAP.</description>
<author>Webgroup Media, LLC.</author>
<version>1.6.0</version>
<link>http://www.cerbweb.com/book/latest/plugins/wgm.ldap.html</link>
<image>plugin.png</image>
<!-- Requirements -->
<requires>
<app_version min="9.1" max="9.1.99" />
<php_extension name="ldap" />
</requires>
<!-- Plugin Dependencies -->
<dependencies>
<require plugin_id="cerberusweb.core" version="9.1" />
</dependencies>
<!-- Patches -->
<patches>
<patch version="8.0.0" revision="1" file="patches/8.0.0.php" />
</patches>
<!-- Templates -->
<templates set="cerberusweb.support_center">
<template path="support_center/login/ldap.tpl" />
</templates>
<!-- Extensions -->
<extensions>
<!-- Support Center Login Authenticator -->
<extension point="usermeet.login.authenticator">
<id>sc.login.auth.ldap</id>
<name>LDAP</name>
<class>
<file>api/App.php</file>
<name>ScLdapLoginAuthenticator</name>
</class>
<params>
<param key="switcher_icon" value="images/fugue/address-book.png" />
<param key="switcher_label" value="Log in with LDAP" />
</params>
</extension>
</extensions>
</plugin>