forked from rmiddle/cerb5blog.attachments_tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
33 lines (28 loc) · 1.08 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
<?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>cerb5blog.attachments_tab</id>
<name>[Cerb5blog.com]: Adds Attachment tab to ticket view.</name>
<description>Adds an Attachment tab to ticket views so you can see all the attachments in one place.</description>
<author>Robert Middleswarth</author>
<revision>0</revision>
<link>http://cerb5blog.com/project/attachmentstab</link>
<image>plugin.png</image>
<!-- Plugin Dependencies -->
<dependencies>
<require plugin_id="cerberusweb.core" version="5.0.0-rc1" />
</dependencies>
<extensions>
<extension point="cerberusweb.ticket.tab">
<id>cerb5blog.attachments_tab.ticket.tab</id>
<name>Cerb5 Blog Attachments Tab</name>
<class>
<file>api/App.php</file>
<name>Cerb5BlogAttachementsTicketTab</name>
</class>
<params>
<param key="uri" value="Attachements" />
<param key="title" value="cerb5blog.attachments_tab.ticket.tab" />
</params>
</extension>
</extensions>
</plugin>