-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.xml
executable file
·53 lines (45 loc) · 1.53 KB
/
manifest.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
<?xml version="1.0" encoding="UTF-8"?>
<plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8">
<name>iZAP Ecommerce</name>
<author>iZAP Team</author>
<version>3.0</version>
<blurb>Full featured ecommerce for elgg.</blurb>
<description>This is a simple example of a manifest file. In this example, there are many options used, including screenshots, dependencies, and additional information about the plugin.</description>
<website>http://www.pluginlotto.com</website>
<copyright>(C) iZAP Web Solutions 2011</copyright>
<license>GNU Public License version 3</license>
<!-- All plugins must require either elgg_version or elgg_release. -->
<requires>
<type>elgg_release</type>
<version>1.8b1</version>
</requires>
<requires>
<type>plugin</type>
<name>izap-elgg-bridge</name>
<version>2.0</version>
</requires>
<requires>
<type>php_extension</type>
<name>curl</name>
</requires>
<requires>
<type>priority</type>
<plugin>izap-elgg-bridge</plugin>
<priority>after</priority>
</requires>
<!-- The path is relative to the plugin's root. -->
<screenshot>
<description>Ecommerce</description>
<path>_graphics/ecommerce_product.PNG</path>
</screenshot>
<screenshot>
<description>Sample image 2</description>
<path>_graphics/product_list.PNG</path>
</screenshot>
<screenshot>
<description>Sample image 2</description>
<path>_graphics/coming_soon.PNG</path>
</screenshot>
<category>iZAP</category>
<admin_interface>advanced</admin_interface>
</plugin_manifest>