diff options
| author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-01-02 23:00:23 +0000 | 
|---|---|---|
| committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-01-02 23:00:23 +0000 | 
| commit | fc21edb0785f2cac11dc592278fad97fffeeb082 (patch) | |
| tree | 24047873840c5931766abaa5b15a73c0692e7565 /documentation/examples/plugins | |
| parent | a826bea54e8934c19b2ada619d966cc7d9628b42 (diff) | |
| download | elgg-fc21edb0785f2cac11dc592278fad97fffeeb082.tar.gz elgg-fc21edb0785f2cac11dc592278fad97fffeeb082.tar.bz2 | |
Fixes #1986, #2170, #2225, #2759. Integrated ElggPluginPackage and ElggPluginManifest with ElggPlugin. System now uses ElggPlugin objects to determin plugins. Order is stored in private settings. This absolutely requires running upgrade.php. 
git-svn-id: http://code.elgg.org/elgg/trunk@7817 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'documentation/examples/plugins')
| -rw-r--r-- | documentation/examples/plugins/manifest.xml | 93 | 
1 files changed, 93 insertions, 0 deletions
| diff --git a/documentation/examples/plugins/manifest.xml b/documentation/examples/plugins/manifest.xml new file mode 100644 index 000000000..34dc82d2f --- /dev/null +++ b/documentation/examples/plugins/manifest.xml @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> +<plugin_manifest version="1.8"> +	<name>My Plugin</name> +	<author>Elgg</author> +	<version>1.0</version> +	<blurb>A concise description.</blurb> +	<description>This is a longer, more interesting description of my plugin, its features, and other important information.</description> +	<website>http://www.elgg.org/</website> +	<copyright>(C) Elgg 2010</copyright> +	<license>GNU Public License version 2</license> + +	<requires> +		<type>elgg_version</type> +		<version>2009030802</version> +	</requires> + +	<requires> +		<type>elgg_release</type> +		<version>1.8-svn</version> +	</requires> + +	<screenshot> +		<description>An example screenshot</description> +		<path>graphics/plugin_ss1.png</path> +	</screenshot> + +	<screenshot> +		<description>Another screenshot</description> +		<path>graphics/plugin_ss2.png</path> +	</screenshot> + +	<category>Admin</category> +	<category>ServiceAPI</category> + +	<on_enable>setup_function</on_enable> +	<on_disable>teardown_function</on_disable> +	<admin_interface>simple</admin_interface> + +	<requires> +		<type>php_extension</type> +		<name>gd</name> +	</requires> + +	<requires> +		<type>php_ini</type> +		<name>short_open_tag</name> +		<value>off</value> +	</requires> + +	<requires> +		<type>php_extension</type> +		<name>made_up</name> +		<version>1.0</version> +	</requires> + +	<requires> +		<type>plugin</type> +		<name>fake_plugin</name> +		<version>1.0</version> +	</requires> + +	<requires> +		<type>plugin</type> +		<name>profile</name> +		<version>1.0</version> +	</requires> + +	<requires> +		<type>plugin</type> +		<name>profile_api</name> +		<version>1.3</version> +		<comparison>lt</comparison> +	</requires> + +	<conflicts> +		<type>plugin</type> +		<name>profile_api</name> +		<version>1.0</version> +	</conflicts> + +	<provides> +		<type>plugin</type> +		<name>profile_api</name> +		<version>1.3</version> +	</provides> + +	<provides> +		<type>php_extension</type> +		<name>curl</name> +		<version>1.0</version> +	</provides> + +</plugin_manifest> | 
