-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.xml
39 lines (37 loc) · 1020 Bytes
/
payment.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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="2.5.0" method="upgrade">
<name>payment</name>
<creationDate>27.05.2016</creationDate>
<author>Aleksandr Kozlov</author>
<authorEmail>[email protected]</authorEmail>
<version>0.0.1</version>
<description>Description</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>
<uninstall>
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<administration>
<menu>Платежи</menu>
<files folder="admin">
<folder>models</folder>
<folder>tables</folder>
<filename>index.html</filename>
<filename>payment.php</filename>
<filename>controller.php</filename>
<folder>views</folder>
<folder>sql</folder>
<folder>controllers</folder>
</files>
</administration>
</extension>