-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonitor.xml
More file actions
54 lines (54 loc) · 1.84 KB
/
monitor.xml
File metadata and controls
54 lines (54 loc) · 1.84 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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.4" method="upgrade">
<name>COM_MONITOR</name>
<author>Constantin Romankiewicz</author>
<creationDate>2015</creationDate>
<license>Apache License 2.0 (see LICENSE)</license>
<authorEmail>constantin@zweiiconkram.de</authorEmail>
<authorUrl>www.zweiiconkram.de</authorUrl>
<version>0.0.14</version>
<description>COM_MONITOR_XML_DESCRIPTION</description>
<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install/mysql/install.sql</file>
</sql>
</install>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall/mysql/uninstall.sql</file>
</sql>
</uninstall>
<update>
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<administration>
<menu img="class:monitor">COM_MONITOR_MENU</menu>
<submenu>
<menu link="option=com_monitor&view=projects">COM_MONITOR_MENU_PROJECTS</menu>
<menu link="option=com_monitor&view=issues">COM_MONITOR_MENU_ISSUES</menu>
<menu link="option=com_monitor&view=comments">COM_MONITOR_MENU_COMMENTS</menu>
<menu link="option=com_monitor&view=status">COM_MONITOR_MENU_STATUS</menu>
<menu link="option=com_monitor&view=classifications">COM_MONITOR_MENU_CLASSIFICATIONS</menu>
</submenu>
<files folder="admin">
<filename>access.xml</filename>
<filename>config.xml</filename>
<filename>monitor.php</filename>
<folder>controller</folder>
<folder>helper</folder>
<folder>language</folder>
<folder>model</folder>
<folder>sql</folder>
<folder>view</folder>
</files>
</administration>
<files folder="site">
<filename>monitor.php</filename>
<filename>router.php</filename>
<folder>controller</folder>
<folder>language</folder>
<folder>view</folder>
</files>
</extension>