]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/BitlyUrl/BitlyUrlPlugin.php
[ROUTES] Allow accept-header specification during router creation
[quix0rs-gnu-social.git] / plugins / BitlyUrl / BitlyUrlPlugin.php
index d3c1ac12188892046f12f9cf68b369c5bf1d47c4..3bf0399dfba6c7f38c3d40b2d54b3fa37b9c42fb 100644 (file)
@@ -35,6 +35,8 @@ if (!defined('STATUSNET')) {
 
 class BitlyUrlPlugin extends UrlShortenerPlugin
 {
+    const PLUGIN_VERSION = '2.0.0';
+
     public $shortenerName = 'bit.ly';
     public $serviceUrl = 'http://api.bit.ly/v3/shorten?longUrl=%s';
     public $login; // To set a site-default when admins or users don't override it.
@@ -147,7 +149,7 @@ class BitlyUrlPlugin extends UrlShortenerPlugin
     function onPluginVersion(array &$versions)
     {
         $versions[] = array('name' => sprintf('BitlyUrl (%s)', $this->shortenerName),
-                            'version' => GNUSOCIAL_VERSION,
+                            'version' => self::PLUGIN_VERSION,
                             'author' => 'Craig Andrews, Brion Vibber',
                             'homepage' => 'https://git.gnu.io/gnu/gnu-social/tree/master/plugins/BitlyUrl',
                             'rawdescription' =>
@@ -167,7 +169,7 @@ class BitlyUrlPlugin extends UrlShortenerPlugin
     public function onRouterInitialized(URLMapper $m)
     {
         $m->connect('panel/bitly',
-                    array('action' => 'bitlyadminpanel'));
+                    ['action' => 'bitlyadminpanel']);
         return true;
     }