diff options
author | Evan Prodromou <evan@status.net> | 2010-01-08 00:21:58 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-08 00:21:58 -0800 |
commit | 87043797bf02a76452c27dc5c203b3e504545001 (patch) | |
tree | 4e694987653e8499cefa4f6dfaa54334e21c9ab7 /plugins/RSSCloud/RSSCloudPlugin.php | |
parent | 054aaa40bf89fd6726f16fb6dcfe6dfab03ef45c (diff) | |
parent | 20af83d316d8a89c3c9a34d17c252425433fc54f (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'plugins/RSSCloud/RSSCloudPlugin.php')
-rw-r--r-- | plugins/RSSCloud/RSSCloudPlugin.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php index 4b9812a47..2de162628 100644 --- a/plugins/RSSCloud/RSSCloudPlugin.php +++ b/plugins/RSSCloud/RSSCloudPlugin.php @@ -31,6 +31,8 @@ if (!defined('STATUSNET')) { exit(1); } +define('RSSCLOUDPLUGIN_VERSION', '0.1'); + /** * Plugin class for adding RSSCloud capabilities to StatusNet * @@ -275,5 +277,19 @@ class RSSCloudPlugin extends Plugin return true; } + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'RSSCloud', + 'version' => RSSCLOUDPLUGIN_VERSION, + 'author' => 'Zach Copley', + 'homepage' => 'http://status.net/wiki/Plugin:RSSCloud', + 'rawdescription' => + _m('The RSSCloud plugin enables your StatusNet instance to publish ' . + 'real-time updates for profile RSS feeds using the ' . + '<a href="http://rsscloud.org/">RSSCloud protocol</a>".')); + + return true; + } + } |