-
Notifications
You must be signed in to change notification settings - Fork 0
/
scaler.xml
65 lines (56 loc) · 1.91 KB
/
scaler.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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.5" method="upgrade">
<name>Scaler</name>
<creationDate>July 2016</creationDate>
<author>David White</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>http://netriver.co.uk/</authorUrl>
<copyright>2016 Netriver Systems Limited</copyright>
<license>All rights reserved</license>
<!-- The version number here must match that of the data model -->
<version>1.0.0</version>
<description>Image scaler component</description>
<!-- A script to run on install, update or uninstall -->
<scriptfile>install.php</scriptfile>
<install> <!-- Runs on install -->
<sql>
<file driver="mysqli" charset="utf8">sql/install.mysql.utf8.sql</file>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
</install>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysqli" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<update> <!-- Runs on update -->
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<!-- Site Main File Copy Section -->
<files folder="site">
<folder>controllers</folder>
<folder>helpers</folder>
<folder>language</folder>
<folder>models</folder>
<folder>layouts</folder>
<folder>lib</folder>
<folder>views</folder>
<filename>index.html</filename>
<filename>scaler.php</filename>
<filename>router.php</filename>
</files>
<administration>
<!-- Administration Main File Copy Section -->
<files folder="admin">
<!-- Admin Main File Copy Section -->
<folder>sql</folder>
<folder>language</folder>
<filename>config.xml</filename>
<filename>access.xml</filename>
<filename>index.html</filename>
</files>
</administration>
</extension>