summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-07 17:58:48 -0800
committerEvan Prodromou <evan@status.net>2010-01-07 17:58:48 -0800
commit11b19788f560c45e7a865bbd56bf1e90bdfb9a0b (patch)
treec08ba73938c715a2815df9333e5b3d569ed1a17f /plugins
parentfe01a7d18391e37c17754e357bb27423fbc39ef7 (diff)
add version information to GeoURL
Diffstat (limited to 'plugins')
-rw-r--r--plugins/GeoURLPlugin.php12
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;
+ }
}