summaryrefslogtreecommitdiff
path: root/plugins/SimpleUrl/SimpleUrlPlugin.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-08 00:20:38 -0800
committerEvan Prodromou <evan@status.net>2010-01-08 00:20:38 -0800
commit054aaa40bf89fd6726f16fb6dcfe6dfab03ef45c (patch)
tree065f6ca6c628912233ca327cf92652525155cc9c /plugins/SimpleUrl/SimpleUrlPlugin.php
parent505cd382f3d0d37f3d9581a907877e644b5118fd (diff)
add versions for url-shortener plugins
Diffstat (limited to 'plugins/SimpleUrl/SimpleUrlPlugin.php')
-rw-r--r--plugins/SimpleUrl/SimpleUrlPlugin.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/SimpleUrl/SimpleUrlPlugin.php b/plugins/SimpleUrl/SimpleUrlPlugin.php
index 45b745b07..6eac7dbb1 100644
--- a/plugins/SimpleUrl/SimpleUrlPlugin.php
+++ b/plugins/SimpleUrl/SimpleUrlPlugin.php
@@ -47,5 +47,18 @@ class SimpleUrlPlugin extends UrlShortenerPlugin
protected function shorten($url) {
return $this->http_get(sprintf($this->serviceUrl,urlencode($url)));
}
+
+ function onPluginVersion(&$versions)
+ {
+ $versions[] = array('name' => sprintf('SimpleUrl (%s)', $this->shortenerName),
+ 'version' => STATUSNET_VERSION,
+ 'author' => 'Craig Andrews',
+ 'homepage' => 'http://status.net/wiki/Plugin:SimpleUrl',
+ 'rawdescription' =>
+ sprintf(_m('Uses <a href="http://%1$s/">%1$s</a> URL-shortener service.'),
+ $this->shortenerName));
+
+ return true;
+ }
}