-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalogsystem.xml
80 lines (69 loc) · 2.75 KB
/
catalogsystem.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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" method="upgrade">
<!-- 'version' attribute for extension tag is no longer used -->
<name>Catalog System</name>
<!-- The following elements are optional and free of formatting constraints -->
<creationDate>August 2022</creationDate>
<author>Group 9</author>
<authorUrl></authorUrl>
<copyright>UCF Programming Team</copyright>
<license>GPL v3</license>
<!-- The version string is recorded in the components table -->
<version>0.0.5</version>
<!-- The description is optional and defaults to the name -->
<description>
Catalog System for UCF Programming Team
</description>
<!-- This is the PHP namespace under which the extension's
code is organised. It should follow this format:
Vendor\Component\ComponentName
"Vendor" can be your company or your own name
The "ComponentName" section MUST match the name used
everywhere else for your component. Whatever the name of
this XML file is, the namespace must match (ignoring CamelCase).
-->
<namespace path="src/">ProgrammingTeam\Component\CatalogSystem</namespace>
<scriptfile>script.php</scriptfile>
<install>
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
</install>
<uninstall>
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<files folder="site/">
<folder>src</folder>
<folder>tmpl</folder>
<folder>models</folder>
<folder>language</folder>
</files>
<media folder="media" destination="com_catalogsystem">
<folder>css</folder>
<folder>js</folder>
<folder>images</folder>
<filename>joomla.asset.json</filename>
</media>
<languages>
<language tag="en-GB">site/language/en-GB/en-GB.com_catalogsystem.ini</language>
</languages>
<administration>
<!-- The link that will appear in the Admin panel's "Components" menu -->
<menu link="index.php?option=com_catalogsystem">Catalog System</menu>
<!-- List of files and folders to copy. Note the 'folder' attribute.
This is the name of the folder in your component package to copy FROM -->
<files folder="admin/">
<folder>language</folder>
<folder>services</folder>
<folder>sql</folder>
<folder>src</folder>
<folder>tmpl</folder>
</files>
<languages>
<language tag="en-GB">admin/language/en-GB/en-GB.com_catalogsystem.ini</language>
<language tag="en-GB">admin/language/en-GB/en-GB.com_catalogsystem.sys.ini</language>
</languages>
</administration>
</extension>