]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/EmailAuthentication/EmailAuthenticationPlugin.php
Localisation updates from http://translatewiki.net.
[quix0rs-gnu-social.git] / plugins / EmailAuthentication / EmailAuthenticationPlugin.php
index 25e5377354ce129a5746ad4e68214ecddc439bf3..e55614ea432d820faadbec3f26569af9daa51ab6 100644 (file)
@@ -22,7 +22,7 @@
  * @category  Plugin
  * @package   StatusNet
  * @author    Craig Andrews <candrews@integralblue.com>
- * @copyright 2009 Craig Andrews http://candrews.integralblue.com
+ * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link      http://status.net/
  */
@@ -34,7 +34,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
 class EmailAuthenticationPlugin extends Plugin
 {
     //---interface implementation---//
-
     function onStartCheckPassword($nickname, $password, &$authenticatedUser)
     {
         if(strpos($nickname, '@'))
@@ -50,5 +49,16 @@ class EmailAuthenticationPlugin extends Plugin
             }
         }
     }
-}
 
+    function onPluginVersion(&$versions)
+    {
+        $versions[] = array('name' => 'Email Authentication',
+                            'version' => STATUSNET_VERSION,
+                            'author' => 'Craig Andrews',
+                            'homepage' => 'http://status.net/wiki/Plugin:EmailAuthentication',
+                            'rawdescription' =>
+                            // TRANS: Plugin description.
+                            _m('The Email Authentication plugin allows users to login using their email address.'));
+        return true;
+    }
+}