add version information to GeoURL

This commit is contained in:
Evan Prodromou 2010-01-07 17:58:48 -08:00
parent fe01a7d183
commit 11b19788f5
1 changed files with 12 additions and 0 deletions

View File

@ -116,4 +116,16 @@ class GeoURLPlugin extends Plugin
return true;
}
function onPluginVersion(&$versions)
{
$versions[] = array('name' => 'GeoURL',
'version' => STATUSNET_VERSION,
'author' => 'Evan Prodromou',
'homepage' => 'http://status.net/wiki/Plugin:GeoURL',
'rawdescription' =>
_m('Ping <a href="http://geourl.org/">GeoURL</a> when '.
'new geolocation-enhanced notices are posted.'));
return true;
}
}