diff options
author | Evan Prodromou <evan@status.net> | 2010-01-07 17:58:48 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-07 17:58:48 -0800 |
commit | 11b19788f560c45e7a865bbd56bf1e90bdfb9a0b (patch) | |
tree | c08ba73938c715a2815df9333e5b3d569ed1a17f | |
parent | fe01a7d18391e37c17754e357bb27423fbc39ef7 (diff) |
add version information to GeoURL
-rw-r--r-- | plugins/GeoURLPlugin.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/GeoURLPlugin.php b/plugins/GeoURLPlugin.php index 30ff2c278..01178f39c 100644 --- a/plugins/GeoURLPlugin.php +++ b/plugins/GeoURLPlugin.php @@ -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; + } } |