-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathactivitystream.xml
More file actions
executable file
·76 lines (76 loc) · 2.53 KB
/
Copy pathactivitystream.xml
File metadata and controls
executable file
·76 lines (76 loc) · 2.53 KB
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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.0" method="upgrade">
<name>com_activitystream</name>
<!-- The following elements are optional and free of formatting constraints -->
<creationDate>8th November 2016</creationDate>
<author>TechJoomla</author>
<authorEmail>extensions@techjoomla.com</authorEmail>
<authorUrl>www.techjoomla.com</authorUrl>
<copyright>Copyright(C)2012-16 TechJoomla</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<!-- The version string is recorded in the components table -->
<version>1.0.0</version>
<!-- The description is optional and defaults to the name -->
<description>COM_ACTIVITYSTREAM_DESCRIPTION</description>
<scriptfile>script.activitystream.php</scriptfile>
<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 in 2.5 -->
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<languages folder="site/language">
<language tag="en-GB">/en-GB/en-GB.com_activitystream.ini</language>
</languages>
<files folder="site">
<filename>index.html</filename>
<filename>activitystream.php</filename>
<filename>controller.php</filename>
<filename>helper.php</filename>
<filename>router.php</filename>
<folder>models</folder>
<folder>controllers</folder>
</files>
<administration>
<languages folder="admin/language">
<language tag="en-GB">/en-GB/en-GB.com_activitystream.sys.ini</language>
<language tag="en-GB">/en-GB/en-GB.com_activitystream.ini</language>
</languages>
<files folder="admin">
<!-- Admin Main File Copy Section -->
<filename>access.xml</filename>
<filename>config.xml</filename>
<filename>activitystream.php</filename>
<filename>controller.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>
<!-- controllers files section -->
<folder>controllers</folder>
<!-- Helpers files section -->
<folder>helpers</folder>
</files>
</administration>
<!-- Media files -->
<media folder="media" destination="com_activitystream">
<folder>scripts</folder>
<folder>themes</folder>
</media>
</extension>