]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add onPluginVersion()
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Mon, 20 Sep 2010 17:42:56 +0000 (19:42 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Mon, 20 Sep 2010 17:42:56 +0000 (19:42 +0200)
plugins/BlogspamNet/BlogspamNetPlugin.php

index d52e6006ac8dbb4bc33bd203af9d59521782826f..51a86b4f36a6e3a92c497560ce6a74e353dcdb07 100644 (file)
@@ -53,7 +53,6 @@ define('BLOGSPAMNETPLUGIN_VERSION', '0.1');
  *
  * @see      Event
  */
-
 class BlogspamNetPlugin extends Plugin
 {
     var $baseUrl = 'http://test.blogspam.net:8888/';
@@ -142,4 +141,15 @@ class BlogspamNetPlugin extends Plugin
     {
         return 'BlogspamNetPlugin/'.BLOGSPAMNETPLUGIN_VERSION . ' StatusNet/' . STATUSNET_VERSION;
     }
+
+    function onPluginVersion(&$versions)
+    {
+        $versions[] = array('name' => 'BlogspamNet',
+                            'version' => BLOGSPAMNETPLUGIN_VERSION,
+                            'author' => 'Evan Prodromou, Brion Vibber',
+                            'homepage' => 'http://status.net/wiki/Plugin:BlogspamNet',
+                            'rawdescription' =>
+                            _m('Plugin to check submitted notices with blogspam.net.'));
+        return true;
+    }
 }