-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
68 lines (57 loc) · 1.77 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
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
<?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.hipchat</id>
<name>HipChat Integration</name>
<description>This plugin provides integration with Atlassian's HipChat via their API. It is intended to be a bridge used by other plugins to communicate with HipChat services. In addition, a new bot action is added for posting automated messages to a HipChat room.</description>
<author>Webgroup Media, LLC.</author>
<version>0.4.0</version>
<link>https://cerb.ai/</link>
<image>plugin.png</image>
<!-- Requirements -->
<requires>
<app_version min="8.3" max="8.3.99" />
<php_extension name="curl" />
</requires>
<!-- Plugin Dependencies -->
<dependencies>
<require plugin_id="cerberusweb.core" version="8.3.0" />
</dependencies>
<!-- Exported Classes -->
<class_loader>
<file path="api/App.php">
<class name="WgmHipchat_API" />
</file>
</class_loader>
<!-- Extensions -->
<extensions>
<!-- Plugin Setup -->
<extension point="cerberusweb.plugin.setup">
<id>wgmhipchat.setup</id>
<name>Setup</name>
<class>
<file>api/App.php</file>
<name>WgmHipchat_Setup</name>
</class>
<params>
<param key="tab_label" value="HipChat Integration" />
</params>
</extension>
<!-- Event Actions -->
<extension point="devblocks.event.action">
<id>wgmhipchat.event.action.post</id>
<name>Post to HipChat</name>
<class>
<file>api/App.php</file>
<name>WgmHipchat_EventActionPost</name>
</class>
<params>
<param key="label" value="Post to HipChat" />
<param key="events">
<value>
<data key="*" />
</value>
</param>
</params>
</extension>
</extensions>
</plugin>