-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuliga.xml
99 lines (85 loc) · 3.85 KB
/
nuliga.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.2.0" method="upgrade">
<name>COM_NULIGA</name>
<!-- The following elements are optional and free of formatting constraints -->
<author>Sebastian Schlicht</author>
<creationDate>Oct 2019</creationDate>
<copyright>Copyright (C) 2019 Sebastian Schlicht. All rights reserved.</copyright>
<license>MIT License; see LICENSE</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>https://www.jablab.de</authorUrl>
<updateservers>
<server type="extension" name="NuLiga Component Updates">https://updates.jablab.de/joomla/com_nuliga/extension.xml</server>
</updateservers>
<!-- The version string is recorded in the components table -->
<version>0.2.0</version>
<!-- The description is optional and defaults to the name -->
<description>COM_NULIGA_DESCRIPTION</description>
<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
</install>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.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>nuliga.php</filename>
<filename>controller.php</filename>
<folder>language</folder>
<folder>models</folder>
</files>
<languages folder="site/language">
<language tag="en-GB">en-GB/en-GB.com_nuliga.ini</language>
<language tag="de-DE">de-DE/de-DE.com_nuliga.ini</language>
</languages>
<media destination="com_nuliga" folder="media">
<filename>index.html</filename>
<folder>css</folder>
<folder>images</folder>
</media>
<administration>
<!-- Administration Menu Section -->
<menu link='index.php?option=com_nuliga'>COM_NULIGA_MENU</menu>
<submenu>
<menu link='option=com_nuliga&view=teams' view='teams'>COM_NULIGA_MENU_TEAMS</menu>
<menu link='option=com_nuliga&view=leagueteams' view='leagueteams'>COM_NULIGA_MENU_LEAGUETEAMS</menu>
<menu link='option=com_nuliga&view=matches' view='matches'>COM_NULIGA_MENU_MATCHES</menu>
</submenu>
<!-- 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>nuliga.php</filename>
<filename>controller.php</filename>
<folder>controllers</folder>
<folder>language</folder>
<folder>libraries</folder>
<folder>models</folder>
<folder>sql</folder>
<folder>tables</folder>
<folder>views</folder>
</files>
<languages folder="admin/language">
<language tag="en-GB">en-GB/en-GB.com_nuliga.ini</language>
<language tag="en-GB">en-GB/en-GB.com_nuliga.sys.ini</language>
<language tag="de-DE">de-DE/de-DE.com_nuliga.ini</language>
<language tag="de-DE">de-DE/de-DE.com_nuliga.sys.ini</language>
</languages>
</administration>
</extension>