-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjcomponent.xml
More file actions
37 lines (37 loc) · 1.31 KB
/
jcomponent.xml
File metadata and controls
37 lines (37 loc) · 1.31 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
<?xml version="1.0" encoding="utf-8" ?>
<extension type="component" version="3.1" method="upgrade">
<name>COM_JCOMPONENT_NAME</name>
<creationDate>April 2016</creationDate>
<author>Grigorchuk Aleksandr</author>
<authorEmail>aleksandr.grigorchuk@gmail.com</authorEmail>
<authorUrl>http://www.graleks.com.ua</authorUrl>
<copyright>Copyright (c) 2016. Grogorchuk Aleksandr</copyright>
<license>MIT License; see LICENSE</license>
<version>1.0.0</version>
<description>COM_JCOMPONENT_DESC</description>
<install>
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
</install>
<update>
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<files folder="site">
<filename>index.html</filename>
<filename>jcomponent.php</filename>
<filename>controller.php</filename>
<folder>models</folder>
<folder>views</folder>
</files>
<administration>
<menu link='index.php?option=com_jcomponent'>COM_JCOMPONENT_NAME</menu>
<files folder="admin">
<filename>index.html</filename>
<filename>jcomponent.php</filename>
<folder>sql</folder>
</files>
</administration>
</extension>