PluginVersion for WikiHashtags

This commit is contained in:
Evan Prodromou 2010-01-08 00:29:09 -08:00
parent 87043797bf
commit c57fe7fbf5
1 changed files with 13 additions and 2 deletions

View File

@ -31,8 +31,6 @@ if (!defined('STATUSNET')) {
exit(1);
}
define('WIKIHASHTAGSPLUGIN_VERSION', '0.1');
/**
* Plugin to use WikiHashtags
*
@ -47,6 +45,8 @@ define('WIKIHASHTAGSPLUGIN_VERSION', '0.1');
class WikiHashtagsPlugin extends Plugin
{
const VERSION = '0.1';
function __construct($code=null)
{
parent::__construct();
@ -99,4 +99,15 @@ class WikiHashtagsPlugin extends Plugin
return true;
}
function onPluginVersion(&$versions)
{
$versions[] = array('name' => 'WikiHashtags',
'version' => self::VERSION,
'author' => 'Evan Prodromou',
'homepage' => 'http://status.net/wiki/Plugin:WikiHashtags',
'rawdescription' =>
_m('Gets hashtag descriptions from <a href="http://hashtags.wikia.com/">WikiHashtags</a>.'));
return true;
}
}