forked from PushOCCRP/Push-Joomla-REST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
push.xml
executable file
·50 lines (45 loc) · 1.8 KB
/
push.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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.2.0" method="upgrade">
<name>Push</name>
<!-- The following elements are optional and free of formatting constraints -->
<creationDate>September 2015</creationDate>
<author>Christopher Guess</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>http://www.icfj.org</authorUrl>
<copyright>Copyright 2015 - International Center For Journalists</copyright>
<license>License Info</license>
<!-- The version string is recorded in the components table -->
<version>0.0.4</version>
<!-- The description is optional and defaults to the name -->
<description>A simple API for the Push mobile application.</description>
<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>push.php</filename>
<filename>controller.php</filename>
<folder>views</folder>
</files>
<administration>
<!-- Administration Menu Section -->
<menu link='index.php?option=com_push'>Push</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>push.php</filename>
<!-- SQL files section -->
<folder>sql</folder>
</files>
</administration>
</extension>