-
Notifications
You must be signed in to change notification settings - Fork 2
/
qwhelloworld.xml
101 lines (88 loc) · 3.46 KB
/
qwhelloworld.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" method="upgrade">
<name>COM_QWHELLOWORLD_NAME</name><!-- Translating this is optional -->
<element>com_qwhelloworld</element>
<creationDate>2020-10-17</creationDate>
<author>QuantumWarp</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>quantumwarp.com</authorUrl>
<copyright>Copyright (C) 2020 QuantumWarp. All rights reserved.</copyright>
<license>GNU General Public License version 3 or later; see LICENSE</license>
<version>1.0.0</version>
<description>COM_QWHELLOWORLD_DESCRIPTION</description><!-- Translating this is optional -->
<namespace>Quantumwarp\Component\Qwhelloworld</namespace><!-- Joomla 4.0 only -->
<changelogurl>https://quantumwarp.com/updates/joomla/com_qwhelloworld/changelog.xml</changelogurl><!-- Joomla 4.0 only -->
<dlid prefix="dlid=" suffix="&dummy=my.zip"/><!-- Joomla 4.0 only -->
<!-- install/update/uninstall Script -->
<scriptfile>script.php</scriptfile>
<!-- Front-end Files -->
<files folder="site">
<folder>controllers</folder>
<folder>helpers</folder>
<folder>language</folder><!-- Languages (New Method) -->
<folder>models</folder>
<folder>views</folder>
<filename>controller.php</filename>
<filename>router.php</filename>
<filename>qwhelloworld.php</filename>
</files>
<!-- Media Files -->
<media folder="media" destination="com_qwhelloworld">
<folder>css</folder>
<folder>images</folder>
<folder>js</folder>
</media>
<!-- Languages (Old Method - Might not be needed) -->
<languages folder="site">
<language tag="en-GB">language/en-GB/en-GB.com_qwhelloworld.ini</language>
</languages>
<!-- Administration Area -->
<administration>
<!-- Menu -->
<menu link='index.php?option=com_qwhelloworld' img="../media/com_qwhelloworld/images/tux-16x16.png">COM_QWHELLOWORLD_MENU</menu>
<submenu>
<menu link="option=com_qwhelloworld">COM_QWHELLOWORLD_SUBMENU_PROJECTS</menu>
<menu link="option=com_categories&view=categories&extension=com_qwhelloworld">COM_QWHELLOWORLD_SUBMENU_CATEGORIES</menu>
</submenu>
<!-- Files -->
<files folder="admin">
<folder>controllers</folder>
<folder>helpers</folder>
<folder>language</folder><!-- Languages (New Method) -->
<folder>layouts</folder>
<folder>models</folder>
<folder>sql</folder>
<folder>tables</folder>
<folder>views</folder>
<filename>access.xml</filename>
<filename>config.xml</filename>
<filename>controller.php</filename>
<filename>qwhelloworld.php</filename>
</files>
<!-- Languages (Old Method - Might not be needed) -->
<languages folder="admin">
<language tag="en-GB">language/en-GB/en-GB.com_qwhelloworld.ini</language>
<language tag="en-GB">language/en-GB/en-GB.com_qwhelloworld.sys.ini</language>
</languages>
</administration>
<!-- Database: Install, Update, Uninstall -->
<install>
<sql>
<file driver="mysql" charset="utf8">sql/mysql/install.mysql.utf8.sql</file><!-- MySQL -->
</sql>
</install>
<update>
<schemas>
<schemapath type="mysql">sql/mysql/updates</schemapath><!-- MySQL -->
</schemas>
</update>
<uninstall>
<sql>
<file driver="mysql" charset="utf8">sql/mysql/uninstall.mysql.utf8.sql</file><!-- MySQL -->
</sql>
</uninstall>
<!-- Update Server -->
<updateservers>
<server type="extension" priority="1" name="QWHelloWorld (Component)">https://quantumwarp.com/updates/joomla/qwhelloworld/update.xml</server>
</updateservers>
</extension>