-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.xml
36 lines (36 loc) · 1.3 KB
/
code.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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install SYSTEM "http://dev.joomla.org/xml/1.5/component-install.dtd">
<extension type="component" version="2.5.0" method="upgrade">
<name>Code</name>
<creationDate>14.08.2016</creationDate>
<author>Tuan Pham Ngoc</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>http://www.joomdonation.com</authorUrl>
<copyright>Copyright (C) 2014 Ossolution Team</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<version>1.0.0</version>
<description>A sample component used to show you how to use common Joomal Libaries while developing Joomla extension</description>
<scriptfile>install.code.php</scriptfile>
<install>
<sql>
<file driver="mysql" charset="utf8">sql/install.code.sql</file>
</sql>
</install>
<uninstall>
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.code.sql</file>
</sql>
</uninstall>
<administration>
<menu>Code</menu>
<files folder="admin">
<folder>sql</folder>
<folder>table</folder>
<filename>code.php</filename>
</files>
<languages folder="admin">
<language tag="en-GB">languages/en-GB/en-GB.com_code.ini</language>
<language tag="en-GB">languages/en-GB/en-GB.com_code.sys.ini</language>
</languages>
</administration>
</extension>