-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtvo.xml
77 lines (72 loc) · 2.68 KB
/
tvo.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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.0" method="upgrade">
<name>COM_TVO</name>
<!-- The following elements are optional and free of formatting constraints -->
<creationDate>September 2021</creationDate>
<author>Stefan Herzog</author>
<authorEmail>joomla@devel.stefan-herzog.com</authorEmail>
<authorUrl>https://github.com/alve89</authorUrl>
<copyright>Copyright Info</copyright>
<license>License Info</license>
<!-- The version string is recorded in the components table -->
<version>0.0.15</version>
<!-- The description is optional and defaults to the name -->
<description>COM_TVO_DESCRIPTION</description>
<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8mb4.sql</file>
</sql>
</install>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8mb4.sql</file>
</sql>
</uninstall>
<update> <!-- Runs on update; New since J2.5 -->
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<!-- Site Main File Copy Section -->
<!-- Note the folder attribute: This attribute describes the folder
to copy FROM in the package to install therefore files copied
in this section are copied from /site/ in the package -->
<files folder="site">
<filename>index.html</filename>
<filename>tvo.php</filename>
<filename>controller.php</filename>
<folder>views</folder>
<folder>models</folder>
</files>
<administration>
<!-- Administration Menu Section -->
<menu link='index.php?option=com_tvo'>COM_TVO_MENU</menu>
<!-- Administration Main File Copy Section -->
<!-- Note the folder attribute: This attribute describes the folder
to copy FROM in the package to install therefore files copied
in this section are copied from /admin/ in the package -->
<files folder="admin">
<!-- Admin Main File Copy Section -->
<filename>index.html</filename>
<filename>tvo.php</filename>
<filename>controller.php</filename>
<filename>cron.php</filename>
<!-- SQL files section -->
<folder>sql</folder>
<!-- tables files section -->
<folder>tables</folder>
<!-- models files section -->
<folder>models</folder>
<!-- views files section -->
<folder>views</folder>
<folder>controllers</folders>
</files>
<languages folder="admin/language">
<language tag="de-DE">de-DE/de-DE.com_tvo.ini</language>
<language tag="de-DE">de-DE/de-DE.com_tvo.sys.ini</language>
</languages>
</administration>
<updateservers>
<server type="extension" priority="2" name="COM_TVO">https://raw.githubusercontent.com/alve89/j_com_tvo/master/updates.xml</server>
</updateservers>
</extension>